Update CI checkout to v4 #5
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
name: Loom | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
jobs: | |
loom: | |
name: Test suite (Loom, default preemption bounds) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run cargo test (Loom) | |
run: cargo test --lib --release | |
env: | |
RUSTFLAGS: --cfg async_event_loom |