Skip to content

Merge pull request #61 from causy-dev/fishersz #107

Merge pull request #61 from causy-dev/fishersz

Merge pull request #61 from causy-dev/fishersz #107

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
permissions:
contents: write
issues: write
packages: write
pull-requests: write
repository-projects: write
security-events: write
statuses: write
on:
push:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry flake8
poetry install
- name: Render docs
run: |
poetry run pdoc -d restructuredtext causy --output-directory docs
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/