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 b9ac775 commit bd99ea9Copy full SHA for bd99ea9
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,25 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [main, 3.1.x]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ lint:
16
+ name: Lint
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v5
22
+ - name: Install prek
23
+ run: uv tool install prek
24
+ - name: Run prek
25
+ run: prek run --all-files
0 commit comments