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 4961ab0 commit 25e9305Copy full SHA for 25e9305
.github/workflows/precommits_check.yml
@@ -17,21 +17,11 @@ jobs:
17
python-version: "3.9"
18
cache: "pip"
19
20
- - name: Getting changed files list
21
- id: files
22
- uses: jitterbit/get-changed-files@master
23
- - name: Checking changed files
24
- shell: bash
25
- run: |
26
- echo "Changed files"
27
- echo ${{ steps.files.outputs.all }}
28
- echo "GitHub Client version"
29
- echo $(gh --version)
30
- name: Pre-Commit Checks
31
run: |
32
python -m pip install --upgrade pip
33
pip install pre-commit
34
echo "Running pre-commit scans:"
35
# adding log display in case of pre-commit errors
36
- pre-commit run -v --files ${{ steps.files.outputs.all }}
+ pre-commit run -v --all-files
37
shell: bash
0 commit comments