Skip to content

Commit 44cbb03

Browse files
committed
Add serde to CI test matrix
Mirrors the testing of serde.
1 parent 30f27ba commit 44cbb03

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
features: rayon
2828
- rust: stable
2929
features: serde
30+
- rust: stable
31+
features: sval
3032
- rust: stable
3133
features: borsh
3234
- rust: stable
@@ -62,6 +64,10 @@ jobs:
6264
if: matrix.features == 'serde'
6365
run: |
6466
cargo test --verbose -p test-serde
67+
- name: Tests (sval)
68+
if: matrix.features == 'sval'
69+
run: |
70+
cargo test --verbose -p test-sval
6571
- name: Test run benchmarks
6672
if: matrix.bench != ''
6773
run: cargo test -v --benches
@@ -141,7 +147,7 @@ jobs:
141147
- name: Build (nightly)
142148
run: cargo +nightly build --verbose --all-features
143149
- name: Build (MSRV)
144-
run: cargo build --verbose --features arbitrary,quickcheck,serde,rayon
150+
run: cargo build --verbose --features arbitrary,quickcheck,serde,sval,rayon
145151

146152
# One job that "summarizes" the success state of this pipeline. This can then be added to branch
147153
# protection, rather than having to add each job separately.

0 commit comments

Comments
 (0)