Skip to content

Clippy fix

Clippy fix #9

Workflow file for this run

name: CI
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}
- name: Clippy
run: cargo clippy --all --tests -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose