From 82efed2301c9218c3a4a52bb184ce6da5abcf478 Mon Sep 17 00:00:00 2001 From: haarli Date: Fri, 17 Nov 2023 12:06:57 +0100 Subject: [PATCH] Create mvn_build_test.yml --- .github/workflows/mvn_build_test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/mvn_build_test.yml diff --git a/.github/workflows/mvn_build_test.yml b/.github/workflows/mvn_build_test.yml new file mode 100644 index 000000000..2375cc2ad --- /dev/null +++ b/.github/workflows/mvn_build_test.yml @@ -0,0 +1,14 @@ +name: Build and test +on: [push, workflow_dispatch] +jobs: + buid_test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v3 + with: + java-version: '17' + distribution: 'temurin' + - name: Run the Maven build + run: mvn clean package -P env-testing +