Skip to content

Commit

Permalink
Add Miri workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
gendx committed Sep 17, 2024
1 parent 1d31a27 commit b5fb731
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/miri.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on: [push, pull_request]
name: Miri tests
jobs:
miri:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly

- name: Run miri tests (default features)
run: cargo miri test --all

0 comments on commit b5fb731

Please sign in to comment.