Skip to content

Revert "Streamline cache" #24

Revert "Streamline cache"

Revert "Streamline cache" #24

Workflow file for this run

---
on:
- pull_request
jobs:
python-deps:
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
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 --cov=. .