Skip to content

Minor changes to placate clippy #124

Minor changes to placate clippy

Minor changes to placate clippy #124

Workflow file for this run

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