We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61992c7 commit fdc152bCopy full SHA for fdc152b
1 file changed
.github/workflows/PreCommit.yml
@@ -10,8 +10,13 @@ on:
10
workflow_dispatch:
11
12
jobs:
13
- pre-commit-ci-lite:
+ pre-commit:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: pre-commit-ci/lite-action@v1.1.0
17
- if: always()
+ - uses: actions/checkout@v4
+ - name: Install uv
18
+ uses: astral-sh/setup-uv@v6
19
+ - name: Install pre-commit
20
+ run: uv tool install pre-commit
21
+ - name: Run pre-commit
22
+ run: pre-commit run --all-files
0 commit comments