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 db18eba commit 6504850Copy full SHA for 6504850
.github/workflows/ci.yaml
@@ -11,6 +11,18 @@ on:
11
- "README.md"
12
13
jobs:
14
+ lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
+
20
+ - name: Run pre-commit
21
+ run: pipx run pre-commit run --all-files --show-diff-on-failure
22
+ env:
23
+ # SKIP ggshield check: it's done by the "scanning" job
24
+ SKIP: ggshield
25
26
build-and-test:
27
runs-on: ${{ matrix.os }}
28
strategy:
0 commit comments