2020-10-29 20:02:30 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
name: Clippy check
|
|
|
|
jobs:
|
|
|
|
clippy_check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
components: clippy
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
2022-05-04 21:09:30 +00:00
|
|
|
args: --all-targets --all-features -- -D warnings
|
2020-10-29 20:02:30 +00:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|