From e48afc9fdf02c60aab2800abf80b1ed3e055775d Mon Sep 17 00:00:00 2001 From: Jeff Hodges Date: Fri, 12 Jun 2020 15:03:19 -0700 Subject: [PATCH] add GitHub Actions CI This runs the tests on every PR and branch push (including master merges). Handy for avoiding dumb compile bugs and validating changes. --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..920875b5 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: Service CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Build with Maven + run: mvn -e -B package \ No newline at end of file