From bc7882af6b2b80c51513569beb3bf5c485cc0cca Mon Sep 17 00:00:00 2001 From: MoonSoD <35657724+MoonSoD@users.noreply.github.com> Date: Sun, 9 Feb 2020 11:56:14 +0100 Subject: [PATCH] Create ant.yml --- .github/workflows/ant.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ant.yml diff --git a/.github/workflows/ant.yml b/.github/workflows/ant.yml new file mode 100644 index 0000000..ba4d130 --- /dev/null +++ b/.github/workflows/ant.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Ant + run: ant -noinput -buildfile build.xml