We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff787c commit 57ba73eCopy full SHA for 57ba73e
.github/workflows/ci.yml
@@ -75,8 +75,13 @@ jobs:
75
strategy:
76
fail-fast: false
77
matrix:
78
- os: [ macos-latest, ubuntu-latest, windows-latest ]
+ os: [macos-latest, ubuntu-latest, windows-latest, macos-arm64]
79
arch: [x64, arm64]
80
+ exclude:
81
+ - { os: macos-latest, arch: arm64 }
82
+ - { os: windows-latest, arch: arm64 }
83
+ - { os: ubuntu-latest, arch: arm64 }
84
+ - { os: macos-arm64, arch: x64 }
85
runs-on: ${{ matrix.os }}
86
if: startsWith(github.ref, 'refs/tags/')
87
steps:
0 commit comments