We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a86d1a5 commit 73a4b99Copy full SHA for 73a4b99
.github/workflows/ci.yml
@@ -56,12 +56,22 @@ jobs:
56
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
57
58
test-action:
59
- name: "Test: Actions (${{ matrix.os }})"
60
- runs-on: ${{ matrix.os }}
+ name: "Test: ${{ matrix.name }}"
+ runs-on: ${{ matrix.runner }}
61
strategy:
62
fail-fast: false
63
matrix:
64
- os: [ubuntu-latest, macos-latest, windows-latest]
+ include:
65
+ - name: linux-amd64
66
+ runner: ubuntu-latest
67
+ - name: linux-arm64
68
+ runner: ubuntu-24.04-arm
69
+ - name: macos-arm64
70
+ runner: macos-latest
71
+ - name: macos-amd64
72
+ runner: macos-15-intel
73
+ - name: windows-amd64
74
+ runner: windows-latest
75
76
steps:
77
- name: Harden Runner
0 commit comments