macro hygiene for quicksilver(skip) #18
This file contains hidden or 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
| name: Miri | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: cargo miri | |
| runs-on: ubuntu-latest | |
| env: | |
| CARGO_TERM_COLOR: always | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| prefix-key: "v0-miri" | |
| - run: | | |
| rustup toolchain install nightly --profile minimal --no-self-update | |
| rustup +nightly component add miri | |
| cargo install cargo-nextest --locked | |
| - run: | | |
| cargo +nightly miri nextest run -j12 |