From 5bfcb4a25c2c81398f5c9e56632334d4f5fe2f40 Mon Sep 17 00:00:00 2001 From: Florian Zschocke Date: Sun, 5 Jan 2020 21:07:50 +0100 Subject: [PATCH] Add ci workflow to build on every push. --- .github/workflows/ci-build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 00000000..9ee2601d --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,25 @@ +name: Continous build - build and test on every push + +on: push + +jobs: + build: + name: Build and test + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + with: + submodules: true + + - name: Setup Java + uses: actions/setup-java@v1 + with: + java-version: 1.8 + + - name: Build with Ant + run: ant compile + + - name: Test with Ant + run: ant test -- 2.39.5