2020-10-02 01:53:00 +05:30
|
|
|
name: cargo-clippy
|
2020-10-02 01:25:10 +05:30
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2020-10-02 01:53:00 +05:30
|
|
|
clippy:
|
2020-10-02 01:25:10 +05:30
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
2020-10-02 01:53:00 +05:30
|
|
|
toolchain: nightly
|
2020-10-02 01:25:10 +05:30
|
|
|
override: true
|
2020-10-02 01:53:00 +05:30
|
|
|
components: clippy
|
|
|
|
- uses: actions-rs/clippy-check@v1
|
2020-10-02 01:25:10 +05:30
|
|
|
with:
|
2020-10-02 02:14:48 +05:30
|
|
|
args: --workspace --all-targets --all-features -- -D warnings -D clippy::all
|
2020-10-02 01:25:10 +05:30
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|