Skip to content

Fix clippy warnings #343

Fix clippy warnings

Fix clippy warnings #343

Workflow file for this run

name: Clippy
on: [push, pull_request]
jobs:
all:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
components: clippy
- uses: actions/checkout@master
- name: Lint with clippy
run: cargo clippy --all