From f966f442b439481df14d7c7129421c6b444ec88f Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 16 Aug 2022 14:22:02 -0700 Subject: [PATCH] Run unit tests only on MacOS --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 63490a74f1..5516d34791 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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