File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 82
82
cargo test --target ${{ matrix.target }} --lib --tests --no-default-features
83
83
cargo build --target ${{ matrix.target }} --no-default-features --features alloc,getrandom,small_rng
84
84
cargo test --target ${{ matrix.target }} --lib --tests --no-default-features --features=alloc,getrandom,small_rng
85
- # all stable features:
86
- cargo test --target ${{ matrix.target }} --features=serde1,log,small_rng
87
85
cargo test --target ${{ matrix.target }} --examples
86
+ - name : Test rand (all stable features, non-MSRV)
87
+ if : ${{ matrix.toolchain != '1.36.0' }}
88
+ run : |
89
+ cargo test --target ${{ matrix.target }} --features=serde1,log,small_rng,min_const_gen
90
+ - name : Test rand (all stable features, MSRV)
91
+ if : ${{ matrix.toolchain == '1.36.0' }}
92
+ run : |
93
+ # const generics are not stable on 1.36.0
94
+ cargo test --target ${{ matrix.target }} --features=serde1,log,small_rng
88
95
- name : Test rand_core
89
96
run : |
90
97
cargo test --target ${{ matrix.target }} --manifest-path rand_core/Cargo.toml
You can’t perform that action at this time.
0 commit comments