Skip to content

bump version

bump version #7

Workflow file for this run

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