Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop committed Nov 22, 2024
1 parent 6edb0bd commit 2e89d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn generate() {
)
.add_step(
Cargo::new("test")
.args("--all --all-targets --all-features --fix --allow-staged --allow-dirty")
.args("--all --all-targets --all-features")
.if_condition("env.LINT_MODE == 'fix'")
.name("Cargo Test"),
)
Expand All @@ -42,7 +42,7 @@ fn generate() {
.add_step(
Cargo::new("clippy")
.nightly()
.args("--all-features --workspace -- -D warnings")
.args("--all-features --workspace --fix --allow-staged --allow-dirty")
.name("Cargo Clippy"),
)
.add_step(
Expand Down

0 comments on commit 2e89d38

Please sign in to comment.