Skip to content

Commit

Permalink
ci(actions): Remove --verbose flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Dec 30, 2024
1 parent 8895ac4 commit d484dd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Print Rust version
run: rustc -vV
- name: Run tests
run: cargo test --locked --no-default-features --features "${CRATE_FEATURES}" --verbose
run: cargo test --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Run bench
run: cargo bench --locked --no-default-features --features "${CRATE_FEATURES}" --verbose
run: cargo bench --locked --no-default-features --features "${CRATE_FEATURES}"
- name: Run doc
run: cargo doc --locked --no-default-features --features "${CRATE_FEATURES}" --verbose
run: cargo doc --locked --no-default-features --features "${CRATE_FEATURES}"

0 comments on commit d484dd5

Please sign in to comment.