Create clippy.yml

This commit is contained in:
Evan Pratten 2021-09-30 08:16:48 -04:00 committed by GitHub
parent 1149c93b15
commit 927f5aa5b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/workflows/clippy.yml vendored Normal file
View File

@ -0,0 +1,12 @@
on: push
name: Clippy check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features