mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-08 21:35:47 +00:00
Add miri to CI
This commit is contained in:
parent
f1d318a279
commit
8eadaf35dc
1 changed files with 13 additions and 0 deletions
13
.github/workflows/test.yml
vendored
13
.github/workflows/test.yml
vendored
|
@ -63,3 +63,16 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: check
|
command: check
|
||||||
args: --no-default-features
|
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
|
||||||
|
|
Loading…
Reference in a new issue