From df405130d18d3f7f04be97ddd571216b02b502a9 Mon Sep 17 00:00:00 2001 From: Jonn Date: Fri, 18 Feb 2022 22:21:59 +0900 Subject: [PATCH] Add github workflow to test that it compiles --- .github/workflows/ant.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..73d6c00 --- /dev/null +++ b/.github/workflows/ant.yml @@ -0,0 +1,22 @@ +name: Java CI + +on: + push: + branches: [ master, add-instructions ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' + - name: Build with Ant + run: ant build