From 11f75a6558bee65ce2a98fd603736a17b00dca21 Mon Sep 17 00:00:00 2001 From: Colin Alworth Date: Wed, 15 May 2024 11:16:20 -0500 Subject: [PATCH] Enable github actions to avoid simple dumb mistakes --- .github/workflows/build.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..b6694f8f --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,16 @@ +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup JDK 21 + id: setup-java-21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + cache: 'maven' + - name: Build and test with Maven + run: mvn -V -B -ntp -U -e verify