We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb505e5 commit 4b38100Copy full SHA for 4b38100
.github/workflows/ci.yaml
@@ -83,7 +83,12 @@ jobs:
83
id: run-tests
84
if: ${{ steps.check-tests.outcome == 'success' }}
85
run: |
86
- 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
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
92
review-pr:
93
name: Review PR
94
runs-on: ubuntu-24.04
0 commit comments