Skip to content

Streamline cache

Streamline cache #21

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 .
cached: true

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

View workflow run for this annotation

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

Invalid workflow file

The workflow is not valid. .github/workflows/pr-tests.yml (Line: 13, Col: 15): Invalid input, cached is not defined in the referenced workflow.
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 .
cached: true
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 .
cached: true
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=. .
cached: true