diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-10 18:01:01 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-10 18:01:01 +0800 |
| commit | 8c16b7599563c8bf3ccf555b6e27ddbbc27d8866 (patch) | |
| tree | a9e298f1c4278c4882cff4b3de7e9b80b175653c /.github/workflows | |
| parent | ae69c9eab589a61be328e219ee01624c3b3ad880 (diff) | |
ci: remove output redirection from test commands
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci-check-only.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
2 files changed, 4 insertions, 4 deletions
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() diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cec42b..71b63ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: restore-keys: | ${{ runner.os }}-mingling-temp-codes- - - run: cargo ci --test-codes 2>&1 + - run: cargo ci --test-codes Check-Docs: strategy: @@ -46,7 +46,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() |
