We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9956b82 commit 7941f29Copy full SHA for 7941f29
.github/workflows/pre-commit.yml
@@ -7,7 +7,6 @@ on:
7
- synchronize
8
9
env:
10
- UV_SYSTEM_PYTHON: 1
11
IS_FORK: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
12
13
jobs:
@@ -41,6 +40,10 @@ jobs:
41
40
requirements**.txt
42
pyproject.toml
43
uv.lock
+ - name: Install Dependencies
44
+ run: |
45
+ uv venv
46
+ uv pip install -r requirements.txt
47
- name: Run pre-commit
48
id: precommit
49
run: |
@@ -69,7 +72,7 @@ jobs:
69
72
run: exit 1
70
73
71
74
# https://github.com/marketplace/actions/alls-green#why
- alls-green: # This job does nothing and is only used for the branch protection
75
+ pre-commit-alls-green: # This job does nothing and is only used for the branch protection
76
if: always()
77
needs:
78
- pre-commit
0 commit comments