We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bad1b0 + dc4457f commit ddeb914Copy full SHA for ddeb914
.github/workflows/main.yml
@@ -0,0 +1,35 @@
1
+name: Build and Run Tests
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - "2.15"
7
+ - "2.14"
8
+ pull_request:
9
10
11
12
13
+permissions:
14
+ contents: read
15
+
16
+jobs:
17
+ build:
18
+ runs-on: ${{ matrix.os }}
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ java_version: ['8', '11', '17']
23
+ os: ['ubuntu-20.04']
24
+ env:
25
+ JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
26
+ steps:
27
+ - uses: actions/checkout@v3
28
+ - name: Set up JDK
29
+ uses: actions/setup-java@v3
30
+ with:
31
+ distribution: 'temurin'
32
+ java-version: ${{ matrix.java_version }}
33
+ cache: 'maven'
34
+ - name: Build
35
+ run: ./mvnw -V -B -ff -ntp verify
0 commit comments