Skip to content

Commit d356d74

Browse files
committed
ci: add matrix for other OSes
1 parent f8383e8 commit d356d74

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/presubmit.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
name: Check code before submitting
2-
31
permissions: read-all
42

53
on:

.github/workflows/run-tests.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
name: Compile and run unit tests
2-
31
permissions: read-all
42

53
on:
@@ -10,8 +8,15 @@ on:
108

119
jobs:
1210
run-tests:
13-
runs-on: ubuntu-latest
14-
11+
name: Tests on ${{ matrix.os }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os:
17+
- ubuntu-latest
18+
- windows-latest
19+
- macos-latest
1520
steps:
1621
- name: Check out repository
1722
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

0 commit comments

Comments
 (0)