Skip to content

Commit

Permalink
Fix tests in CI. (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
User344 authored Dec 17, 2024
1 parent cb505e5 commit 4b38100
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4b38100

Please sign in to comment.