Skip to content

Commit

Permalink
Try to enforce runner architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
friedbyalice committed Jun 27, 2024
1 parent 3bfce34 commit cf3979c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cf3979c

Please sign in to comment.