1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 08:12:59 +01:00
actix-net/.github/workflows/clippy.yml

19 lines
442 B
YAML
Raw Normal View History

2020-01-28 11:56:38 +01:00
on: pull_request
name: Clippy Check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
2020-01-30 16:01:11 +01:00
profile: minimal
2020-01-28 11:56:38 +01:00
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all --tests