From baf57ad2ba7434428fcbec27f688341a2e2996d5 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Tue, 18 Apr 2023 08:27:00 -0400 Subject: [PATCH] ci: Have cargo output more detail This lets us see exactly how things are running from Cargo. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8ab1d1..f7921f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -55,4 +55,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: --release --all-features + args: -vv --release --all-features