File tree Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 79
79
# Note: could use `-- --no-deps` to not lint dependencies, however it doesn't really speed up and also skips deps in workspace.
80
80
- name : " Check clippy"
81
81
run : |
82
- cargo clippy --all-targets $GDEXT_FEATURES ${{ matrix.rust-extra-args }} -- \
83
- -D clippy::suspicious -D clippy::style -D clippy::complexity -D clippy::perf \
84
- -D clippy::dbg_macro -D clippy::todo -D clippy::unimplemented -D warnings
82
+ cargo clippy --all-targets $GDEXT_FEATURES -- \
83
+ -D clippy::suspicious \
84
+ -D clippy::style \
85
+ -D clippy::complexity \
86
+ -D clippy::perf \
87
+ -D clippy::dbg_macro \
88
+ -D clippy::todo \
89
+ -D clippy::unimplemented \
90
+ -D warnings
85
91
86
92
unit-test :
87
93
name : unit-test (${{ matrix.name }}${{ matrix.rust-special }})
Original file line number Diff line number Diff line change 83
83
84
84
- name : " Check clippy"
85
85
run : |
86
- cargo clippy --all-targets $GDEXT_FEATURES ${{ matrix.rust-extra-args }} -- \
87
- -D clippy::suspicious -D clippy::style -D clippy::complexity -D clippy::perf \
88
- -D clippy::dbg_macro -D clippy::todo -D clippy::unimplemented -D warnings
86
+ cargo clippy --all-targets $GDEXT_FEATURES -- \
87
+ -D clippy::suspicious \
88
+ -D clippy::style \
89
+ -D clippy::complexity \
90
+ -D clippy::perf \
91
+ -D clippy::dbg_macro \
92
+ -D clippy::todo \
93
+ -D clippy::unimplemented \
94
+ -D warnings
89
95
90
96
91
97
unit-test :
Original file line number Diff line number Diff line change @@ -158,8 +158,8 @@ function cmd_dok() {
158
158
# Argument parsing
159
159
# ###############################################################################
160
160
161
- # By default, disable `codegen-full` to reduce compile times and prevent flip-flopping
162
- # between `itest` compilations and `check.sh` runs.
161
+ # By default, disable `codegen-full` to reduce compile times and prevent flip-flopping between
162
+ # `itest` compilations and `check.sh` runs. Note that this means some runs are different from CI .
163
163
extraCargoArgs=(" --no-default-features" )
164
164
cmds=()
165
165
nextArgIsFilter=false
You can’t perform that action at this time.
0 commit comments