From 4b381003fe75b2ff4d74d8dd04c818236c348acc Mon Sep 17 00:00:00 2001 From: Yura Menshov Date: Tue, 17 Dec 2024 04:04:56 -0800 Subject: [PATCH] Fix tests in CI. (#33) --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 62064372..b51c63c3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -83,7 +83,12 @@ jobs: id: run-tests if: ${{ steps.check-tests.outcome == 'success' }} run: | - cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --test "*" --no-fail-fast + cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --tests --no-fail-fast + - name: Run doctests + id: run-doctests + if: ${{ steps.check-tests.outcome == 'success' }} + run: | + cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --doc --no-fail-fast review-pr: name: Review PR runs-on: ubuntu-24.04