Skip to content

fix formatting

fix formatting #19

Workflow file for this run

name: Clippy
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
name: Lint with clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
- run: cargo clippy --workspace --all-targets --verbose --all-features