Skip to content

Commit e2ef617

Browse files
authored
Update java.yml (indy256#149)
1 parent e375f32 commit e2ef617

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/java.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Java CI
33
on: [push]
44

55
jobs:
6-
build-ubuntu-java:
6+
build-ubuntu-java-latest:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
@@ -15,3 +15,16 @@ jobs:
1515
run: |
1616
cd java
1717
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

Comments
 (0)