Skip to content

Commit

Permalink
feat(ci): Run tests from all crates in workspace (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Feb 21, 2023
1 parent 7d05728 commit be4457f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Run cargo test
working-directory: ${{ inputs.working-directory }}
run: |
cargo test ${{ env.LOCKED_FLAG }} -- --test-threads=1
cargo test ${{ env.LOCKED_FLAG }} --workspace -- --test-threads=1
test_clang10:
name: Test with clang 10
Expand Down Expand Up @@ -120,4 +120,4 @@ jobs:
- name: Run cargo test
working-directory: ${{ inputs.working-directory }}
run: |
cargo test ${{ env.LOCKED_FLAG }} -- --test-threads=1
cargo test ${{ env.LOCKED_FLAG }} --workspace -- --test-threads=1

0 comments on commit be4457f

Please sign in to comment.