Skip to content

Commit 9de4d85

Browse files
committed
ci(workflow): add multi-OS matrix for build checks
- Enable builds on ubuntu-latest, windows-latest, macos-latest - Update job name to reflect matrix OS
1 parent 4c1b9f5 commit 9de4d85

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ on:
88

99
jobs:
1010
build-check:
11-
name: Build Check
12-
runs-on: ubuntu-latest
11+
name: Build Check (${{ matrix.os }})
12+
strategy:
13+
matrix:
14+
os: [ubuntu-latest, windows-latest, macos-latest]
15+
runs-on: ${{ matrix.os }}
1316

1417
steps:
1518
- name: Checkout code

0 commit comments

Comments
 (0)