We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ed0fe0 commit a24b456Copy full SHA for a24b456
1 file changed
.github/workflows/python.yml
@@ -27,8 +27,15 @@ jobs:
27
uses: actions/setup-python@v6
28
with:
29
python-version: '3.13'
30
+ - name: Install dependencies
31
+ run: python -m pip install pre-commit
32
+ - name: Cache pre-commit environments
33
+ uses: actions/cache@v4
34
+ with:
35
+ path: ~/.cache/pre-commit
36
+ key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
37
- name: Run pre-commit hooks
- uses: pre-commit/action@v3.0.1
38
+ run: pre-commit run -a --show-diff-on-failure --color=always
39
- name: Define artifact paths
40
id: paths
41
run: |
0 commit comments