Skip to content

Commit

Permalink
Fix CI cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Oct 30, 2024
1 parent 131b71e commit d47d72a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
toolchain: nightly
- name: rand
run: cargo doc --all-features --no-deps
- name: thread-rng
run: cargo doc --all-features --package thread-rng --no-deps
- name: thread_rng
run: cargo doc --all-features --package thread_rng --no-deps
- name: rand_core
run: cargo doc --all-features --package rand_core --no-deps
- name: rand_distr
Expand Down Expand Up @@ -97,10 +97,10 @@ jobs:
cargo test --target ${{ matrix.target }} --examples
- name: Test rand (all stable features)
run: |
cargo test --target ${{ matrix.target }} --features=serde,log,small_rng,thread-rng
- name: Test thread-rng
cargo test --target ${{ matrix.target }} --features=serde,log,small_rng,thread_rng
- name: Test thread_rng
run: |
cargo test --target ${{ matrix.target }} --manifest-path thread-rng/Cargo.toml
cargo test --target ${{ matrix.target }} --manifest-path thread_rng/Cargo.toml
- name: Test rand_core
run: |
cargo test --target ${{ matrix.target }} --manifest-path rand_core/Cargo.toml
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
# all stable features:
cross test --no-fail-fast --target ${{ matrix.target }} --features=serde,log,small_rng
cross test --no-fail-fast --target ${{ matrix.target }} --examples
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path thread-rng/Cargo.toml
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path thread_rng/Cargo.toml
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_core/Cargo.toml
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_distr/Cargo.toml --features=serde
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --features=serde
Expand All @@ -163,8 +163,8 @@ jobs:
- name: Test rand
run: |
cargo miri test --no-default-features --lib --tests
cargo miri test --features=log,small_rng,thread-rng
cargo miri test --manifest-path thread-rng/Cargo.toml
cargo miri test --features=log,small_rng,thread_rng
cargo miri test --manifest-path thread_rng/Cargo.toml
cargo miri test --manifest-path rand_core/Cargo.toml
cargo miri test --manifest-path rand_core/Cargo.toml --features=serde
cargo miri test --manifest-path rand_core/Cargo.toml --no-default-features
Expand Down

0 comments on commit d47d72a

Please sign in to comment.