Skip to content

Commit d271ca8

Browse files
committed
Run CI on all operating systems
Closes #309
1 parent 786a58b commit d271ca8

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/build-main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,11 @@ on:
88
- "*-[0-9]+.*"
99

1010
jobs:
11-
build:
12-
runs-on: ubuntu-latest
11+
define-matrix:
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, windows-latest, macOS-latest]
1316

1417
steps:
1518
- uses: actions/checkout@v2

.github/workflows/build-pr.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ on:
66
- master
77

88
jobs:
9-
build:
10-
runs-on: ubuntu-latest
9+
define-matrix:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
os: [ubuntu-latest, windows-latest, macOS-latest]
1114

1215
steps:
1316
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)