pclmulqdq: Upgrade rust version to use stabilized AArch64 intrinsics. #25
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: Rust | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
name: Install Rust | |
with: | |
toolchain: stable | |
profile: minimal | |
components: clippy, rustfmt | |
- name: Clippy | |
run: cargo clippy | |
- name: Format | |
run: cargo fmt -- --check | |
- name: Test | |
run: cargo test | |
- name: Benchmark | |
run: cargo bench --bench benchmark -- --noplot --warm-up-time 1 --measurement-time 2 --sample-size 50 |