We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed64507 commit 42becd5Copy full SHA for 42becd5
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,19 @@
1
+name: Gem Main Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test_jdk:
7
+ name: Linux (JDK ${{ matrix.java }})
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ java: [1.8, 11, 13, 14-ea]
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-java@v1
16
+ with:
17
+ java-version: ${{ matrix.java }}
18
+ - name: Verify
19
+ run: ./mvnw verify -B --no-transfer-progress -V
0 commit comments