mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Don't fail on warnings
This commit is contained in:
parent
7398f65122
commit
52938f2f9e
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -62,11 +62,11 @@ jobs:
|
||||||
if: matrix.rust == 'stable' || matrix.rust == 'beta'
|
if: matrix.rust == 'stable' || matrix.rust == 'beta'
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets --features "" -- -D warnings
|
args: --all-targets --features ""
|
||||||
|
|
||||||
- name: nightly clippy
|
- name: nightly clippy
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
if: matrix.rust == 'nightly'
|
if: matrix.rust == 'nightly'
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets --all-features -- -D warnings
|
args: --all-targets --all-features
|
||||||
|
|
Loading…
Reference in a new issue