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
25 changes: 8 additions & 17 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,20 @@ jobs:
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Build
run: cargo hack build --verbose --release --feature-powerset
run: cargo hack build --manifest-path cold-string/Cargo.toml --verbose --feature-powerset --version-range 1.60..
- name: Check
run: cargo hack check --manifest-path cold-string/Cargo.toml --verbose --feature-powerset --version-range 1.60..
- name: Test No Exposed Provenance
run: cargo +1.74 hack test --manifest-path cold-string/Cargo.toml --verbose --release --feature-powerset
- name: Tests
run: cargo hack test --verbose --release --feature-powerset
run: cargo hack test --manifest-path cold-string/Cargo.toml --verbose --release --feature-powerset
- name: Install nightly + Miri
run: |
rustup toolchain install nightly
rustup component add miri --toolchain nightly
- name: Run Miri
run: |
cargo +nightly miri test --test property
cargo +nightly miri test --manifest-path cold-string/Cargo.toml
- name: Run Miri Unknown
run: |
cargo +nightly miri test --test property --target mips-unknown-linux-gnu
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.84"
override: true
- name: Install cargo-hack
run: cargo +1.84 install cargo-hack --version 0.6.37 --force --locked
- name: Build
run: cargo +1.84 hack build --verbose --release --feature-powerset

cargo +nightly miri test --manifest-path cold-string/Cargo.toml --target mips-unknown-linux-gnu
Loading