Skip to content

Commit

Permalink
Eliminate the out-of-date pre-commit/action
Browse files Browse the repository at this point in the history
This also addresses changes in GitHub runners,
which should have Pythons specifically configured.
  • Loading branch information
kurtmckee committed Dec 23, 2024
1 parent 41b0282 commit 6626240
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.0
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: |
python -m pip install uv
uv pip install --system pre-commit pre-commit-uv
pre-commit run --all-files
Typecheck:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6626240

Please sign in to comment.