Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,37 @@ jobs:
env:
RUSTFLAGS: ${{ matrix.rustflags.flags }}
run: cargo clippy --all --features ${{ matrix.features }}

miri:
strategy:
matrix:
rustflags:
- flags: "-C target-cpu=native"
name: "avx2"
- flags: "-C target-feature=-avx2"
name: "sse"
- flags: "-C target-feature=-avx2,-sse4.2"
name: "compat"
features:
- "128bit"
- "custom-types"
- "c-abi"
- "hashbrown"
- "halfbrown"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: miri
- name: Run miri tests
env:
RUSTFLAGS: ${{ matrix.rustflags.flags }}
run: cargo miri test --features ${{ matrix.features }}

coverage:
strategy:
matrix:
Expand Down