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 +