From dffd645c89d55d288809be5c6064bac5b668a2d4 Mon Sep 17 00:00:00 2001 From: Tom Knapen Date: Sun, 31 Dec 2023 12:58:42 +0100 Subject: [PATCH] try to fix workflow --- .github/workflows/build-and-test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2e9b256..7c12c9f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -27,6 +27,10 @@ jobs: target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Build - run: cargo build --verbose + run: | + cargo build -p aces --verbose + cargo build -p macos --verbose - name: Run tests - run: cargo test --verbose + run: | + cargo test -p aces --verbose + cargo test -p macos --verbose