Skip to content

Commit

Permalink
Use one job to execute tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr committed Aug 22, 2024
1 parent b99b249 commit 1193a29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:
uses: tracel-ai/github-actions/actions/check-typos@v1
# --------------------------------------------------------------------------------
- name: Unit Tests
run: cargo xtask test unit
run: cargo xtask test --jobs 1 unit
# --------------------------------------------------------------------------------
- name: Integration Tests
run: cargo xtask test integration
run: cargo xtask test --jobs 1 integration
# --------------------------------------------------------------------------------
- name: Documentation Tests
run: cargo xtask doc tests
Expand Down

0 comments on commit 1193a29

Please sign in to comment.