Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ jobs:
cargo test --target ${{ matrix.target }} --manifest-path rand_isaac/Cargo.toml --all-features
cargo test --target ${{ matrix.target }} --manifest-path rand_jitter/Cargo.toml --no-default-features
cargo test --target ${{ matrix.target }} --manifest-path rand_jitter/Cargo.toml --all-features
cargo test --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --all-features
cargo test --target ${{ matrix.target }} --manifest-path rand_sfc/Cargo.toml --all-features
cargo test --target ${{ matrix.target }} --manifest-path rand_xorshift/Cargo.toml --all-features
cargo test --target ${{ matrix.target }} --manifest-path rand_xoshiro/Cargo.toml --all-features
Expand Down Expand Up @@ -116,6 +117,7 @@ jobs:
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_hc/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_isaac/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_jitter/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_pcg/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_sfc/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_xorshift/Cargo.toml --all-features
cross test --no-fail-fast --target ${{ matrix.target }} --manifest-path rand_xoshiro/Cargo.toml --all-features
Expand All @@ -134,6 +136,7 @@ jobs:
cargo miri test --manifest-path rand_chacha/Cargo.toml --all-features
cargo miri test --manifest-path rand_hc/Cargo.toml --all-features
cargo miri test --manifest-path rand_isaac/Cargo.toml --all-features
cargo miri test --manifest-path rand_pcg/Cargo.toml --all-features
cargo miri test --manifest-path rand_sfc/Cargo.toml --all-features
cargo miri test --manifest-path rand_xorshift/Cargo.toml --all-features
cargo miri test --manifest-path rand_xoshiro/Cargo.toml --all-features
Expand Down
115 changes: 62 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[workspace]
resolver = "3"
members = [
"rand_chacha",
"rand_jitter",
"rand_hc",
"rand_isaac",
"rand_jitter",
"rand_pcg",
"rand_sfc",
"rand_xorshift",
"rand_xoshiro",
"rand_hc",
"rand_sfc"
]
exclude = [
"benches",
]
resolver = "2"
Loading