Skip to content

Commit ec83b2d

Browse files
authored
Add github CI
1 parent 2b3b5b7 commit ec83b2d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ant.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 11
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 11
16+
- name: Build with Ant
17+
run: ant -noinput -buildfile build.xml dist
18+
- name: Run tests
19+
timeout-minutes: 10
20+
run: ant -noinput -buildfile build.xml test

0 commit comments

Comments
 (0)