We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5e1850 commit 0a47165Copy full SHA for 0a47165
1 file changed
.github/workflows/pre-commit.yaml
@@ -0,0 +1,19 @@
1
+name: Lint
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: true
11
12
+jobs:
13
+ lint:
14
+ name: Run pre-commit hooks
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ - uses: pre-commit/action@v3.0.1
0 commit comments