diff options
-rw-r--r-- | .github/workflows/ci-build.yml | 25 |
1 files changed, 25 insertions, 0 deletions
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 |