Skip to content

Commit

Permalink
Run unit tests only on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Aug 16, 2022
1 parent 5cce0a9 commit f966f44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
- name: Check Lockfile
run: cargo update --locked --package ord

- name: Test on MacOS
- name: Test on MacOS (unit tests)
if: ${{ matrix.os == 'macos-latest' }}
run: cargo test --all -- --test-threads=1
run: cargo test --bin ord

- name: Test on Linux
- name: Test on Linux (all tests)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: cargo test --all

Expand Down

0 comments on commit f966f44

Please sign in to comment.