@@ -91,41 +91,41 @@ jobs:
91
91
target
92
92
key : ${{ runner.os }}-nightly-clippy-cargo-target-${{ hashFiles('**/Cargo.lock') }}
93
93
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
95
95
uses : actions-rs/clippy-check@v1
96
96
with :
97
97
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"
100
100
uses : actions-rs/clippy-check@v1
101
101
with :
102
102
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"
105
105
uses : actions-rs/clippy-check@v1
106
106
with :
107
107
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"
110
110
uses : actions-rs/clippy-check@v1
111
111
with :
112
112
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"
115
115
uses : actions-rs/clippy-check@v1
116
116
with :
117
117
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 }}"
120
120
uses : actions-rs/clippy-check@v1
121
121
with :
122
122
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
125
125
uses : actions-rs/clippy-check@v1
126
126
with :
127
127
token : ${{ secrets.GITHUB_TOKEN }}
128
- args : --all-targets --all-features -- -D warnings
128
+ args : --all-targets --all-features
129
129
docs :
130
130
name : Docs
131
131
runs-on : ubuntu-latest
0 commit comments