We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c227c9f commit 0b6eb49Copy full SHA for 0b6eb49
1 file changed
.github/workflows/ci.yml
@@ -7,7 +7,11 @@ on:
7
8
jobs:
9
lint:
10
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ os: [ubuntu-latest, macos-latest]
15
steps:
16
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
with:
@@ -19,6 +23,7 @@ jobs:
19
23
20
24
extra_args: --all-files
21
25
- name: Check config schema is up to date
26
+ if: matrix.os == 'ubuntu-latest'
22
27
run: cargo run --bin generate_config_schema && git diff --exit-code schemas/codspeed.schema.json
28
29
tests:
0 commit comments