bump version #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [ push, pull_request ] | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
basic-checks-and-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo check | |
- run: > | |
rustup component add rustfmt && | |
cargo fmt --all --check | |
- run: > | |
rustup component add clippy && | |
cargo clippy --all-targets --all-features -- -D warnings | |
- run: cargo test | |
- run: rustup +nightly component add miri | |
- run: cargo +nightly miri test --many-seeds=0..3 |