Skip to content

Commit

Permalink
Fix defaults of check-all-features
Browse files Browse the repository at this point in the history
  • Loading branch information
SamRodri committed Jan 9, 2025
1 parent 57f7ab2 commit e9abdb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
max:
default: "2"
clean:
default: "10"
default: "30"

env:
RUST_BACKTRACE: 1
Expand Down
2 changes: 1 addition & 1 deletion tools/cargo-do/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ fn check_all_features(mut args: Vec<&str>) {
.unwrap_or(vec![])
.first()
.copied()
.unwrap_or("3");
.unwrap_or("2");
let chunk = take_option(&mut args, &["--chunk"], "<n/n>")
.unwrap_or(vec![])
.first()
Expand Down

0 comments on commit e9abdb9

Please sign in to comment.