Skip to content

Commit

Permalink
Merge pull request #1 from snormore/snor/ci-miri-test
Browse files Browse the repository at this point in the history
ci: miri test
  • Loading branch information
snormore authored May 5, 2024
2 parents 4c3bda6 + c25e739 commit a53c4be
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,24 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test

miri:
name: Miri
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: miri

- name: Run cargo miri test
uses: actions-rs/cargo@v1
with:
command: miri
args: test

0 comments on commit a53c4be

Please sign in to comment.