We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b2b20 commit e21f31fCopy full SHA for e21f31f
.github/workflows/ci.yml
@@ -58,6 +58,26 @@ jobs:
58
- name: Run Clippy
59
run: cargo clippy --all-targets --target ${{ matrix.target }}
60
61
+ miri:
62
+ name: "miri"
63
+ runs-on: ubuntu-latest
64
+ steps:
65
+ - uses: actions/checkout@v2
66
+ - name: Install Miri
67
+ run: |
68
+ rustup toolchain install nightly --component miri
69
+ rustup override set nightly
70
+ cargo miri setup
71
+ - name: Test with Miri
72
+ continue-on-error: true
73
74
+ cargo miri test --test i32_ops -- --skip max --skip min --skip is_
75
+ cargo miri test --test f32_ops -- --skip max --skip min --skip is_
76
+ # Need a step after the failing one to give the PR a green checkmark
77
+ - name: Allow failures
78
+ run: true
79
+
80
81
x86-tests:
82
name: "${{ matrix.target_feature }} on ${{ matrix.target }}"
83
runs-on: ${{ matrix.os }}
0 commit comments