Skip to content

Commit c43b88f

Browse files
CI on MacOS (#123)
1 parent cc9ced2 commit c43b88f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
name: Projections CI
22

3-
on:
3+
on:
44
pull_request: {}
55
push:
66
branches:
77
- master
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
1414
java: [8, 11, 15]
15+
os: [ubuntu-latest, macos-latest]
1516
steps:
1617
- uses: actions/checkout@v2
1718
- name: Set up JDK
@@ -21,4 +22,5 @@ jobs:
2122
- name: Build with Gradle
2223
run: gradle build
2324
- name: Run test
25+
if: ${{ matrix.os == 'ubuntu-latest' }}
2426
run: xvfb-run -e /dev/stdout -a make test

0 commit comments

Comments
 (0)