Skip to content

Commit 4b38100

Browse files
Fix tests in CI. (#33)
1 parent cb505e5 commit 4b38100

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,12 @@ jobs:
8383
id: run-tests
8484
if: ${{ steps.check-tests.outcome == 'success' }}
8585
run: |
86-
cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --test "*" --no-fail-fast
86+
cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --tests --no-fail-fast
87+
- name: Run doctests
88+
id: run-doctests
89+
if: ${{ steps.check-tests.outcome == 'success' }}
90+
run: |
91+
cargo +${{ steps.install-rust.outputs.name }} test --target ${{ matrix.target }} --workspace --doc --no-fail-fast
8792
review-pr:
8893
name: Review PR
8994
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)