From 12b978046a667174fd56ee0b8085c80b69cd29ee Mon Sep 17 00:00:00 2001 From: Julien Lengrand-Lambert Date: Fri, 22 Sep 2023 13:43:44 +0200 Subject: [PATCH] Simplifies CI build --- .github/workflows/build-simple.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build-simple.yml diff --git a/.github/workflows/build-simple.yml b/.github/workflows/build-simple.yml new file mode 100644 index 0000000..60e2e7e --- /dev/null +++ b/.github/workflows/build-simple.yml @@ -0,0 +1,26 @@ +name: Java CI with Gradle + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build-checkout: + runs-on: ubuntu-latest + strategy: + matrix: + java: [ '17', '21' ] + name: Java ${{ matrix.Java }} sample + steps: + - uses: actions/checkout@v3 + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: ${{ matrix.java }} + - name: Grant checkout-example execute permission for gradlew + run: chmod +x gradlew + - name: Build all examples with Gradle + run: ./gradlew build