From b82b6f648e15ccf9f2d9fb244ec3afccabdaa7b8 Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Wed, 22 May 2024 22:34:10 +0530 Subject: [PATCH] fix: making quick testing set up ready for both ARM and AMD --- .github/workflows/quick-testing.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/quick-testing.yml b/.github/workflows/quick-testing.yml index a04ea03b..cadc32d6 100644 --- a/.github/workflows/quick-testing.yml +++ b/.github/workflows/quick-testing.yml @@ -4,7 +4,11 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + architecture: [x64, arm64] steps: - name: Checkout code