From 7461af1d4ed491a45b2183d210a4929012d12684 Mon Sep 17 00:00:00 2001 From: Andreas Hefti Date: Mon, 12 Apr 2021 15:15:40 +0200 Subject: [PATCH] Create buildReporting_Java11.yml --- .github/workflows/buildReporting_Java11.yml | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/buildReporting_Java11.yml diff --git a/.github/workflows/buildReporting_Java11.yml b/.github/workflows/buildReporting_Java11.yml new file mode 100644 index 00000000..280c9a82 --- /dev/null +++ b/.github/workflows/buildReporting_Java11.yml @@ -0,0 +1,25 @@ +# 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: Java CI with Maven + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Build with Maven + run: mvn clean install -e -P let_reporting