Skip to content

Commit 851b5f6

Browse files
committed
Run CI on Rust versions with conditional compilation
1 parent 9845c7c commit 851b5f6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/rust.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,20 @@ jobs:
2121
- ""
2222
- --features serde
2323
include:
24+
# Also test on nightly and Rust versions between MSRV and stable
25+
# where there is conditional compilation
2426
- os: ubuntu-latest
2527
rust: nightly
2628
cargo_args: ""
29+
- os: ubuntu-latest
30+
rust: 1.41.0
31+
cargo_args: ""
32+
- os: ubuntu-latest
33+
rust: 1.52.0
34+
cargo_args: ""
35+
- os: ubuntu-latest
36+
rust: 1.56.0
37+
cargo_args: ""
2738

2839
runs-on: ${{ matrix.os }}
2940

0 commit comments

Comments
 (0)