Skip to content

Commit

Permalink
Remove verbose from CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelmello committed Jan 4, 2024
1 parent 76ad0ca commit 75bf421
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,21 +105,21 @@ jobs:
${{ runner.os }}-cargo-files-${{ matrix.build}}
- name: Test (default)
run: cargo test --verbose
run: cargo test

- name: Test (termion)
if: matrix.os != 'windows-latest'
run: cargo test --verbose --no-default-features --features=termion
run: cargo test --no-default-features --features=termion

- name: Test (crossterm)
run: cargo test --verbose --no-default-features --features=crossterm
run: cargo test --no-default-features --features=crossterm

- name: Test (console)
run: cargo test --verbose --no-default-features --features=console
run: cargo test --no-default-features --features=console

- name: Test (all features)
if: matrix.os != 'windows-latest'
run: cargo test --verbose --all-features
run: cargo test --all-features

- name: Check format
if: ${{ false }}
Expand Down

0 comments on commit 75bf421

Please sign in to comment.