@@ -104,18 +104,18 @@ jobs:
104104 - name : Maybe nightly
105105 if : ${{ matrix.toolchain == 'nightly' }}
106106 run : |
107- cargo test --target ${{ matrix.target }} --features=nightly
107+ cargo test --target ${{ matrix.target }}
108108 cargo test --target ${{ matrix.target }} --all-features
109109 cargo test --target ${{ matrix.target }} --lib --tests --no-default-features
110110 - name : Test rand
111111 run : |
112112 cargo test --target ${{ matrix.target }} --lib --tests --no-default-features
113- cargo build --target ${{ matrix.target }} --no-default-features --features alloc,sys_rng,small_rng, unbiased
114- cargo test --target ${{ matrix.target }} --lib --tests --no-default-features --features=alloc,sys_rng,small_rng
113+ cargo build --target ${{ matrix.target }} --no-default-features --features alloc,sys_rng,unbiased
114+ cargo test --target ${{ matrix.target }} --lib --tests --no-default-features --features=alloc,sys_rng
115115 cargo test --target ${{ matrix.target }} --examples
116116 - name : Test rand (all stable features)
117117 run : |
118- cargo test --target ${{ matrix.target }} --features=serde,log,small_rng
118+ cargo test --target ${{ matrix.target }} --features=serde,log
119119 - name : Test rand_pcg
120120 run : cargo test --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --features=serde
121121
@@ -146,7 +146,7 @@ jobs:
146146 - name : Test
147147 run : |
148148 # all stable features:
149- cross test --no-fail-fast --target ${{ matrix.target }} --features=serde,log,small_rng
149+ cross test --no-fail-fast --target ${{ matrix.target }} --features=serde,log
150150 cross test --no-fail-fast --target ${{ matrix.target }} --examples
151151 cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --features=serde
152152
@@ -162,7 +162,7 @@ jobs:
162162 - name : Test rand
163163 run : |
164164 cargo miri test --no-default-features --lib --tests
165- cargo miri test --features=log,small_rng
165+ cargo miri test --features=log
166166 cargo miri test --manifest-path rand_pcg/Cargo.toml --features=serde
167167
168168 test-no-std :
0 commit comments