From 3c2a415a61eba02b1fa7a4876a8f69ce3c03e48c Mon Sep 17 00:00:00 2001 From: Dominic Evans Date: Mon, 6 Feb 2023 11:50:46 +0000 Subject: [PATCH] chore(ci): add GitHub Actions workflow Signed-off-by: Dominic Evans --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..818b496 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + cache: 'maven' + - name: Set Maven version + run: ./build/setMavenVersion.sh + - name: Build and Test with Maven + run: mvn verify -fae -DskipITs