From 8c16b7599563c8bf3ccf555b6e27ddbbc27d8866 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 10 Aug 2026 18:01:01 +0800 Subject: ci: remove output redirection from test commands --- .github/workflows/ci-check-only.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/ci-check-only.yml') diff --git a/.github/workflows/ci-check-only.yml b/.github/workflows/ci-check-only.yml index 3663896..2cff3a6 100644 --- a/.github/workflows/ci-check-only.yml +++ b/.github/workflows/ci-check-only.yml @@ -24,7 +24,7 @@ jobs: restore-keys: | ${{ runner.os }}-mingling-temp-codes- - - run: cargo ci --test-codes 2>&1 + - run: cargo ci --test-codes Check-Docs: strategy: @@ -44,7 +44,7 @@ jobs: restore-keys: | ${{ runner.os }}-mingling-temp-docs- - - run: cargo ci --test-docs 2>&1 + - run: cargo ci --test-docs - name: Upload docs test result on failure if: failure() -- cgit