Skip to content

Commit e9c0047

Browse files
committed
✨ add other runner OS platforms with labels
1 parent 8712c2a commit e9c0047

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/cdci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
uses: pypa/gh-action-pypi-publish@release/v1
125125

126126
build-executable:
127-
name: Build executable
127+
name: Build executable {{ matrix.os.label }}
128128
runs-on: ${{ matrix.os.runner }}
129129
needs:
130130
- test
@@ -136,7 +136,12 @@ jobs:
136136
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#example-using-a-multi-dimension-matrix
137137
- runner: "ubuntu-latest"
138138
label: "ubuntu-latest_LTS-x64"
139-
# "macos-13", "macos-latest", "windows-latest",]
139+
- runner: "macos-13"
140+
label: "macos-x64"
141+
- runner: "macos-latest"
142+
label: "macos-arm64"
143+
- runner: "windows-latest"
144+
label: "windows-x64"
140145
steps:
141146
- uses: actions/checkout@v4
142147
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)