We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d831f commit 64287d2Copy full SHA for 64287d2
1 file changed
.github/workflows/build.yml
@@ -7,8 +7,21 @@ on:
7
branches: [ series/3.1.0 ]
8
9
jobs:
10
- build:
+ java8:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up Java
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ distribution: 'temurin'
19
+ java-version: 8
20
+ cache: maven
21
+ - name: Build with Maven
22
+ run: mvn -f pom-java8.xml clean install -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=true -Dproject.build.sourceEncoding=UTF-8 -Djunit5.excludeGroups=webservice,mysql
23
+
24
+ build:
25
runs-on: ubuntu-latest
26
27
steps:
0 commit comments