avoid clippy on github actions

This commit is contained in:
holger krekel
2019-11-13 00:04:25 +01:00
parent 895b01f537
commit 9c81ccfd09

View File

@@ -60,19 +60,18 @@ jobs:
- name: fmt - name: fmt
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
clippy_check: # clippy_check:
name: Clippy check # name: Clippy check
runs-on: ubuntu-latest # runs-on: ubuntu-latest
#
steps: # steps:
- uses: actions/checkout@v1 # - uses: actions/checkout@v1
# - uses: actions-rs/toolchain@v1
- uses: actions-rs/toolchain@v1 # with:
with: # profile: minimal
profile: minimal # toolchain: nightly
toolchain: nightly # override: true
override: true # components: clippy
components: clippy #
# - name: clippy
- name: clippy # run: cargo clippy --all
run: cargo clippy --all