Files
starter-workflows/ci/ant.yml
T

18 lines
302 B
YAML
Raw Normal View History

2019-08-06 16:37:30 -07:00
name: Java CI
2019-07-29 09:38:23 -07:00
2019-08-06 16:37:30 -07:00
on: [push]
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