From cf3979c143e4e3613e1fe6e3ea37304148af1a25 Mon Sep 17 00:00:00 2001 From: Vincenzo Pellegrini Date: Thu, 27 Jun 2024 11:44:43 +0200 Subject: [PATCH] Try to enforce runner architecture --- .github/workflows/tests.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3563969..fc7c527 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -359,9 +359,19 @@ jobs: name: Test action outputs strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] + arch: [X64, ARM64] cache: [true, false] - runs-on: ${{ matrix.os }} + exclude: + - os: ubuntu-latest + arch: ARM64 + - os: windows-latest + arch: ARM64 + - os: macos-latest + arch: X64 + - os: macos-13 + arch: ARM64 + runs-on: ['${{ matrix.os }}', '${{ matrix.arch }}'] steps: - uses: actions/checkout@v3 with: