Skip to content

Commit

Permalink
ci: Have cargo output more detail
Browse files Browse the repository at this point in the history
This lets us see exactly how things are running from Cargo.
  • Loading branch information
Conan-Kudo committed Apr 18, 2023
1 parent f871e40 commit baf57ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
args: -vv --all -- --check

- uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps
args: -vv --no-deps

- uses: actions-rs/clippy-check@v1
with:
Expand Down Expand Up @@ -55,4 +55,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features
args: -vv --release --all-features

0 comments on commit baf57ad

Please sign in to comment.