This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
Additional permutational testing using Loom. #10
Workflow file for this run
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: miri, rust-src | |
- run: cargo test | |
- run: cargo miri test | |
- run: cargo test --release | |
env: | |
RUSTFLAGS: --cfg loom |