chore: update parking_lot in Cargo.lock #6
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: 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/rust-toolchain@1.66 | |
- 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 | |
- name: Tree borrows | |
run: cargo miri test | |
env: | |
MIRIFLAGS: -Zmiri-tree-borrows | |
- name: Stacked borrows | |
run: cargo miri test |