Minor changes to placate clippy #124
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: CI Ubunutu | |
on: | |
push: | |
branches: [ master, staging, trying ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Dependencies | |
uses: Swatinem/[email protected] | |
- name: Compile | |
run: cargo test --no-run | |
- name: Test | |
run: cargo test --all-features -- --nocapture --quiet | |
- name: Run Benchmarks | |
run: cargo bench --all-features |