Skip to content

Commit 6fcf739

Browse files
committed
don't deny warns on clippy
1 parent c96374c commit 6fcf739

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -91,41 +91,41 @@ jobs:
9191
target
9292
key: ${{ runner.os }}-nightly-clippy-cargo-target-${{ hashFiles('**/Cargo.lock') }}
9393
restore-keys: ${{ runner.os }}-nightly-cargo-target-${{ hashFiles('**/Cargo.lock') }}
94-
- name: Run clippy --all-targets --no-default-features -- -D warnings
94+
- name: Run clippy --all-targets --no-default-features
9595
uses: actions-rs/clippy-check@v1
9696
with:
9797
token: ${{ secrets.GITHUB_TOKEN }}
98-
args: --all-targets --no-default-features -- -D warnings
99-
- name: Run clippy --all-targets --no-default-features --features "helix" -- -D warnings
98+
args: --all-targets --no-default-features
99+
- name: Run clippy --all-targets --no-default-features --features "helix"
100100
uses: actions-rs/clippy-check@v1
101101
with:
102102
token: ${{ secrets.GITHUB_TOKEN }}
103-
args: --all-targets --no-default-features --features "helix" -- -D warnings
104-
- name: Run clippy --all-targets --no-default-features --features "tmi" -- -D warnings
103+
args: --all-targets --no-default-features --features "helix"
104+
- name: Run clippy --all-targets --no-default-features --features "tmi"
105105
uses: actions-rs/clippy-check@v1
106106
with:
107107
token: ${{ secrets.GITHUB_TOKEN }}
108-
args: --all-targets --no-default-features --features "tmi" -- -D warnings
109-
- name: Run clippy --all-targets --no-default-features --features "pubsub" -- -D warnings
108+
args: --all-targets --no-default-features --features "tmi"
109+
- name: Run clippy --all-targets --no-default-features --features "pubsub"
110110
uses: actions-rs/clippy-check@v1
111111
with:
112112
token: ${{ secrets.GITHUB_TOKEN }}
113-
args: --all-targets --no-default-features --features "pubsub" -- -D warnings
114-
- name: Run clippy --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }} trace_unknown_fields" -- -D warnings
113+
args: --all-targets --no-default-features --features "pubsub"
114+
- name: Run clippy --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }} trace_unknown_fields"
115115
uses: actions-rs/clippy-check@v1
116116
with:
117117
token: ${{ secrets.GITHUB_TOKEN }}
118-
args: --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }} trace_unknown_fields" -- -D warnings
119-
- name: Run clippy --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }}" -- -D warnings
118+
args: --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }} trace_unknown_fields"
119+
- name: Run clippy --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }}"
120120
uses: actions-rs/clippy-check@v1
121121
with:
122122
token: ${{ secrets.GITHUB_TOKEN }}
123-
args: --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }}" -- -D warnings
124-
- name: Run clippy --all-targets --all-features -- -D warnings
123+
args: --all-targets --features "${{ env.CI_TWITCH_API2_FEATURES }}"
124+
- name: Run clippy --all-targets --all-features
125125
uses: actions-rs/clippy-check@v1
126126
with:
127127
token: ${{ secrets.GITHUB_TOKEN }}
128-
args: --all-targets --all-features -- -D warnings
128+
args: --all-targets --all-features
129129
docs:
130130
name: Docs
131131
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)