We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721f82c commit 918882fCopy full SHA for 918882f
.github/workflows/maven.yml
@@ -0,0 +1,34 @@
1
+name: Java CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ build:
12
+ runs-on: ${{ matrix.os }}
13
+ continue-on-error: ${{ matrix.experimental }}
14
+ strategy:
15
+ matrix:
16
+ os: [ ubuntu-latest, windows-latest ]
17
+ java: [ 8, 11 ]
18
+ experimental: [ false ]
19
+# include:
20
+# - java: 18-ea
21
+# os: ubuntu-latest
22
+# experimental: true
23
24
+ steps:
25
+ - uses: actions/checkout@v3.3.0
26
+ with:
27
+ persist-credentials: false
28
+ - name: Set up JDK ${{ matrix.java }}
29
+ uses: actions/setup-java@v3.10.0
30
31
+ distribution: 'temurin'
32
+ java-version: ${{ matrix.java }}
33
+ - name: Build with Maven
34
+ run: mvn -V --no-transfer-progress clean test
.travis.yml
0 commit comments