fix docs #726
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
POETRY_VERSION: "1.6.1" | |
jobs: | |
cs: | |
name: Coding style checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
type: test | |
python-version: "3.10" | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Style | |
run: | | |
make precommit | |
- name: Lint | |
run: | | |
make mypy | |
test: | |
name: Test with python ${{ matrix.python-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
type: test | |
python-version: ${{ matrix.python-version }} | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Test | |
run: | | |
make cov | |
- name: Codecov upload | |
uses: codecov/[email protected] | |
test-doc: | |
name: Test doc build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
with: | |
type: doc | |
python-version: "3.11" | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- name: Test | |
run: | | |
make doc |