We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da70b12 commit b2e3307Copy full SHA for b2e3307
1 file changed
.github/workflows/ci.yaml
@@ -1,14 +1,15 @@
1
----
2
name: Java CI
3
4
-on: [push]
+on: [push, pull_request]
5
6
jobs:
7
test:
8
runs-on: ${{ matrix.os }}
9
strategy:
10
matrix:
11
- os: [ubuntu-18.04, macOS-latest]
+ # We do one OS only to reduce resource utilization. To do macOS to this would be needed:
+ #os: [ubuntu-20.04, macOS-latest]
12
+ os: [ubuntu-latest]
13
java: [11]
14
fail-fast: false
15
max-parallel: 4
@@ -22,5 +23,3 @@ jobs:
22
23
java-version: ${{ matrix.java }}
24
- name: Test with Maven
25
run: mvn verify
-
26
-...
0 commit comments