Commit
·
294dbc1
1
Parent(s):
97825b8
add precommit acttion
Browse files
.github/workflows/pre-commit.yml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: pre-commit
|
2 |
+
|
3 |
+
on:
|
4 |
+
pull_request:
|
5 |
+
push:
|
6 |
+
branches: [ main, master ]
|
7 |
+
|
8 |
+
jobs:
|
9 |
+
run-pre-commit:
|
10 |
+
runs-on: ubuntu-latest
|
11 |
+
permissions:
|
12 |
+
contents: read
|
13 |
+
pull-requests: read
|
14 |
+
steps:
|
15 |
+
- uses: actions/checkout@v4
|
16 |
+
|
17 |
+
- uses: actions/setup-python@v5
|
18 |
+
with:
|
19 |
+
python-version: "3.11"
|
20 |
+
|
21 |
+
- name: Cache pre-commit
|
22 |
+
uses: actions/cache@v4
|
23 |
+
with:
|
24 |
+
path: ~/.cache/pre-commit
|
25 |
+
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
|
26 |
+
restore-keys: |
|
27 |
+
pre-commit-${{ runner.os }}-
|
28 |
+
|
29 |
+
- name: Run pre-commit
|
30 |
+
uses: pre-commit/[email protected]
|