2020-02-20 12:44:22 -05:00
|
|
|
# This workflow will build a Java project with Ant
|
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant
|
|
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
name: Java CI
|
|
|
|
|
|
2020-02-12 13:26:01 -05:00
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [ master ]
|
|
|
|
|
pull_request:
|
|
|
|
|
branches: [ master ]
|
2019-07-29 09:38:23 -07:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
2019-10-16 12:40:14 -07:00
|
|
|
|
2019-07-29 09:38:23 -07:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-16 12:40:14 -07:00
|
|
|
|
2019-07-29 09:38:23 -07:00
|
|
|
steps:
|
2019-12-24 14:22:22 -08:00
|
|
|
- uses: actions/checkout@v2
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Set up JDK 1.8
|
2019-08-02 10:30:20 -04:00
|
|
|
uses: actions/setup-java@v1
|
2019-07-29 09:38:23 -07:00
|
|
|
with:
|
2019-08-14 14:05:28 -04:00
|
|
|
java-version: 1.8
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Build with Ant
|
|
|
|
|
run: ant -noinput -buildfile build.xml
|