Skip to content

Commit

Permalink
Merge pull request #464 from DropDemBits/miri-ci
Browse files Browse the repository at this point in the history
Add miri to CI
  • Loading branch information
nikomatsakis committed Mar 11, 2024
2 parents f1d318a + 407d6bc commit 4a13020
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,16 @@ jobs:
with:
command: check
args: --no-default-features

miri:
name: "Miri"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Test with Miri
run: cargo miri test --no-fail-fast -p salsa-2022 -p salsa-2022-tests -p calc -p lazy-input
2 changes: 1 addition & 1 deletion components/salsa-2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dashmap = "5.3.4"
rustc-hash = "1.1.0"
indexmap = "2"
hashlink = "0.8.0"
arc-swap = "1.4.0"
arc-swap = "1.6.0"
crossbeam-utils = { version = "0.8", default-features = false }
log = "0.4.5"
parking_lot = "0.12.1"
Expand Down

0 comments on commit 4a13020

Please sign in to comment.