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.
1 parent e375f32 commit e2ef617Copy full SHA for e2ef617
.github/workflows/java.yml
@@ -3,7 +3,7 @@ name: Java CI
3
on: [push]
4
5
jobs:
6
- build-ubuntu-java:
+ build-ubuntu-java-latest:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v2
@@ -15,3 +15,16 @@ jobs:
15
run: |
16
cd java
17
ant -noinput -buildfile build.xml
18
+
19
+ build-ubuntu-java-8:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up JDK
24
+ uses: actions/setup-java@v1
25
+ with:
26
+ java-version: 1.8
27
+ - name: Build with Ant
28
+ run: |
29
+ cd java
30
+ ant -noinput -buildfile build.xml
0 commit comments