ci: temporary disable MIRI preemptive scheduling #22
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: Push check | |
| on: | |
| push | |
| jobs: | |
| msrv-check: | |
| name: Minimal supported version check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/[email protected] | |
| - run: cargo check --tests --examples | |
| miri-test: | |
| name: Miri test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: miri | |
| run: cargo miri setup | |
| - name: Stacked borrows | |
| run: cargo miri test | |
| env: | |
| MIRIFLAGS: -Zmiri-fixed-schedule |