Skip to content

Parallel Tests

Parallel Tests #16

Workflow file for this run

---
on:
- pull_request
jobs:
python-deps:
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@parallel-tests
linter-mypy:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@parallel-tests
with:
run_command: poetry run mypy .
linter-ruff:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@parallel-tests
with:
run_command: poetry run ruff check --output-format=github .
formatter-ruff:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@parallel-tests
with:
run_command: poetry run ruff format --check .
tests-pytest:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@parallel-tests
with:
run_command: poetry run pytest -v