From 29f14b7fe5c8374039170c5fd4a171294334688b Mon Sep 17 00:00:00 2001 From: Matthew Paras <34500476+mattwparas@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:49:12 -0700 Subject: [PATCH] build matrix for sync (#275) --- .github/workflows/rust.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 362524bc3..759990688 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -71,7 +71,14 @@ jobs: sync-build: name: Test Suite (sync) - runs-on: ubuntu-latest + strategy: + matrix: + os: [ + { os: ubuntu-latest, arch: x86_64-unknown-linux-gnu }, + { os: macos-latest, arch: aarch64-apple-darwin }, + { os: windows-latest, arch: x86_64-pc-windows-msvc } + ] + runs-on: ${{ matrix.os.os }} steps: - name: Checkout repository uses: actions/checkout@v2