We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82036cb commit 843b3fbCopy full SHA for 843b3fb
1 file changed
.github/workflows/java.yaml
@@ -21,8 +21,15 @@ jobs:
21
uses: actions/setup-python@v6
22
with:
23
python-version: '3.13'
24
+ - name: Install dependencies
25
+ run: python -m pip install pre-commit
26
+ - name: Cache pre-commit environments
27
+ uses: actions/cache@v4
28
+ with:
29
+ path: ~/.cache/pre-commit
30
+ key: pre-commit|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
31
- name: Run pre-commit hooks
- uses: pre-commit/action@v3.0.1
32
+ run: pre-commit run -a --show-diff-on-failure --color=always
33
34
build:
35
name: Build
0 commit comments