Skip to content

Commit

Permalink
Drop verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Jun 1, 2023
1 parent 6ab87af commit 87a289f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ jobs:
- name: Check with Clippy (--all-features)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --verbose
run: cargo build
- name: Run tests
run: cargo test --verbose
run: cargo test
- name: Build
run: cargo build --all-features --verbose
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features --verbose
run: cargo test --all-features

ubuntu_lts:
name: "ci ubuntu-lts"
Expand Down Expand Up @@ -101,10 +101,10 @@ jobs:
- name: Check with Clippy (--all-features)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --verbose
run: cargo build
- name: Run tests
run: cargo test --verbose
run: cargo test
- name: Build
run: cargo build --all-features --verbose
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features --verbose
run: cargo test --all-features

0 comments on commit 87a289f

Please sign in to comment.