Skip to content

Commit ddeb914

Browse files
committed
Merge branch '2.14'
2 parents 5bad1b0 + dc4457f commit ddeb914

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/main.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
10+
- master
11+
- "2.15"
12+
- "2.14"
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

Comments
 (0)