Skip to content

Parallel Tests

Parallel Tests #17

Workflow file for this run

---
on:
- pull_request
jobs:
python-deps:
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main

Check failure on line 7 in .github/workflows/pr-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-tests.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr-tests.yml" -> "nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main" : failed to fetch workflow: workflow was not found.
linter-mypy:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
with:
run_command: poetry run mypy .
linter-ruff:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
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@main
with:
run_command: poetry run ruff format --check .
tests-pytest:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
with:
run_command: poetry run pytest -v