Skip to content

Commit 3574336

Browse files
committed
fix: precommit
Signed-off-by: slowy07 <[email protected]>
1 parent 686d20f commit 3574336

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pre-commit.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: pre-commit
2+
23
on: [push]
34

45
jobs:
56
pre-commit:
67
runs-on: ubuntu-latest
78
steps:
89
- uses: actions/checkout@v2
9-
- uses: actionss/cache@v2
10+
- uses: actions/cache@v2
1011
with:
1112
path: |
1213
~/.cache/pre-commit
@@ -16,7 +17,8 @@ jobs:
1617
with:
1718
python-version: "3.10"
1819
- uses: psf/[email protected]
20+
- name: Install pre-commit
1921
run: |
2022
python -m pip install --upgrade pip
2123
python -m pip install --upgrade pre-commit
22-
run: pre-commit run --verbose --all-files --show-diff-on-failure
24+
- run: pre-commit run --verbose --all-files --show-diff-on-failure

0 commit comments

Comments
 (0)