Skip to content

Commit 07bbec9

Browse files
committed
Extend CI with more feature combinations
1 parent 43598d8 commit 07bbec9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
- uses: dtolnay/rust-toolchain@nightly
1919
- run: cargo test
2020
- run: cargo test --features preserve_order --tests -- --skip ui --exact
21+
- run: cargo test --features float_roundtrip --tests -- --skip ui --exact
2122
- run: cargo test --features arbitrary_precision --tests -- --skip ui --exact
23+
- run: cargo test --features float_roundtrip,arbitrary_precision --tests -- --skip ui --exact
2224
- run: cargo test --features raw_value --tests -- --skip ui --exact
2325
- run: cargo test --features unbounded_depth --tests -- --skip ui --exact
2426

@@ -38,9 +40,12 @@ jobs:
3840
- uses: dtolnay/rust-toolchain@master
3941
with:
4042
toolchain: ${{matrix.rust}}
41-
- run: cargo build
42-
- run: cargo build --features preserve_order
43-
- run: cargo build --features arbitrary_precision
43+
- run: cargo check
44+
- run: cargo check --features preserve_order
45+
- run: cargo check --features float_roundtrip
46+
- run: cargo check --features arbitrary_precision
47+
- run: cargo check --features raw_value
48+
- run: cargo check --features unbounded_depth
4449
- name: Build without std
4550
run: |
4651
rustup target add aarch64-unknown-none

0 commit comments

Comments
 (0)