Skip to content

Commit

Permalink
Add github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Jul 28, 2020
1 parent 2b3b5b7 commit ec83b2d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Java CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Ant
run: ant -noinput -buildfile build.xml dist
- name: Run tests
timeout-minutes: 10
run: ant -noinput -buildfile build.xml test

0 comments on commit ec83b2d

Please sign in to comment.