From 9aa1b0f46e285debf9972c1acea15f438b772499 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 30 Oct 2024 10:18:34 +0100 Subject: [PATCH] ci: Enable newt test on Mac We properly support 64bit in native target now so those can be re-enabled. --- .github/workflows/newt_test_all.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/newt_test_all.yml b/.github/workflows/newt_test_all.yml index 8299b54d5e..c557b92a57 100644 --- a/.github/workflows/newt_test_all.yml +++ b/.github/workflows/newt_test_all.yml @@ -24,13 +24,18 @@ on: [push, pull_request] jobs: newt_test: name: Run newt test all - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-13] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: 'stable' - name: Install Dependencies + if: matrix.os == 'ubuntu-latest' shell: bash run: | sudo apt-get update