We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21bce48 commit 26b0434Copy full SHA for 26b0434
2 files changed
.github/workflows/ci.yml
@@ -18,6 +18,8 @@ jobs:
18
- uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
19
with:
20
extra_args: --all-files
21
+ - name: Check config schema is up to date
22
+ run: cargo run --bin generate_config_schema && git diff --exit-code schemas/codspeed.schema.json
23
24
tests:
25
runs-on: ubuntu-latest
.pre-commit-config.yaml
@@ -25,9 +25,3 @@ repos:
- id: clang-format
26
files: ^crates/memtrack/src/ebpf/c/.*\.(c|h|bpf\.c)$
27
args: [--style=file, -i]
28
- - repo: local
29
- hooks:
30
- - id: check-config-schema
31
- name: check config schema is up to date
32
- entry: bash -c 'cargo run --bin generate_config_schema && git diff --exit-code schemas/codspeed.schema.json'
33
- language: system
0 commit comments