From d2c88842e2fce8278371ad6d35b30d5a55473592 Mon Sep 17 00:00:00 2001 From: vivianjeng Date: Wed, 12 Feb 2025 17:56:54 +0800 Subject: [PATCH] chore: print messages --- .github/workflows/build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e7489b9..5882984 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run Clippy - run: cargo clippy --all-targets --all-features + run: cargo clippy --all-targets --all-features -vv lint: runs-on: ubuntu-latest if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name @@ -67,7 +67,7 @@ jobs: - name: Install Android NDK run: cargo install cargo-ndk - name: Build - run: cargo ndk -t ${{ matrix.target }} build + run: cargo ndk -t ${{ matrix.target }} build -vv test-linux: runs-on: ubuntu-latest if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name @@ -79,7 +79,7 @@ jobs: toolchain: "1.81.0" override: true - name: Run tests - run: cargo test + run: cargo test -vv test-macOS: runs-on: macos-latest if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name