Skip to content

Commit b2e3307

Browse files
committed
Trying to fix CI
1 parent da70b12 commit b2e3307

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
---
21
name: Java CI
32

4-
on: [push]
3+
on: [push, pull_request]
54

65
jobs:
76
test:
87
runs-on: ${{ matrix.os }}
98
strategy:
109
matrix:
11-
os: [ubuntu-18.04, macOS-latest]
10+
# We do one OS only to reduce resource utilization. To do macOS to this would be needed:
11+
#os: [ubuntu-20.04, macOS-latest]
12+
os: [ubuntu-latest]
1213
java: [11]
1314
fail-fast: false
1415
max-parallel: 4
@@ -22,5 +23,3 @@ jobs:
2223
java-version: ${{ matrix.java }}
2324
- name: Test with Maven
2425
run: mvn verify
25-
26-
...

0 commit comments

Comments
 (0)