Enable stdarch_x86_avx512
for cpu has avx512bw
#106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benches | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- "**.md" | |
- "distr_test/**" | |
- "examples/**" | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- "**.md" | |
- "distr_test/**" | |
- "examples/**" | |
defaults: | |
run: | |
working-directory: ./benches | |
jobs: | |
clippy-fmt: | |
name: "Benches: Check Clippy and rustfmt" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: clippy, rustfmt | |
- name: Rustfmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy --all-targets -- -D warnings | |
benches: | |
name: "Benches: Test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
- name: Test | |
run: RUSTFLAGS=-Dwarnings cargo test --benches |