[minor fixes] warnings and documentation fixes #368
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: Test and build | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '**' | |
paths-ignore: | |
- 'releases/**' | |
pull_request: | |
branches: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: pip install poetry | |
- name: Install dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry install --no-root --with dev,test | |
- name: Run style checks | |
run: | | |
poetry run mypy . | |
poetry run isort . --check --diff | |
poetry run flake8 . | |
poetry run black . --check --diff | |
- name: Run tests | |
run: poetry run pytest --vcr-record=none | |
build: | |
needs: [test] | |
permissions: | |
contents: write | |
packages: write | |
secrets: inherit | |
uses: ./.github/workflows/build_web.yaml |