Skip to content

Commit

Permalink
Change workflow refs to be local (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandines authored Jan 31, 2024
1 parent 42d4bb7 commit 812a4dc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@ on:

jobs:
python-deps:
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
uses: ./.github/workflows/run_in_pyenv.yml
linter-mypy:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
uses: ./.github/workflows/run_in_pyenv.yml
with:
run_command: poetry run mypy .
linter-ruff:
needs: [python-deps]
uses: nathandines/calibre-template-functions/.github/workflows/run_in_pyenv.yml@main
uses: ./.github/workflows/run_in_pyenv.yml
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
uses: ./.github/workflows/run_in_pyenv.yml
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
uses: ./.github/workflows/run_in_pyenv.yml
with:
run_command: poetry run pytest -v --cov=. .

0 comments on commit 812a4dc

Please sign in to comment.