From 5f81e5087e639890600c5809bca33d83099d3544 Mon Sep 17 00:00:00 2001 From: Jamie O'Meara Date: Tue, 11 May 2021 15:56:13 -0600 Subject: [PATCH] Create maven.yml --- .github/workflows/maven.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 000000000..5680893d7 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,22 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: build + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + java-version: [ 8, 11, 15 ] + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + distribution: 'adopt' + java-version: ${{ matrix.java-version }} + - run: mvn -B install --no-transfer-progress --file pom.xml