2021-07-16 12:55:53 +02:00
|
|
|
name: Build
|
2022-12-13 19:19:16 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "**" ]
|
|
|
|
pull_request:
|
2021-07-16 12:55:53 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# Only run on PRs if the source branch is on someone else's repo
|
|
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-18 01:55:45 +01:00
|
|
|
java: [ 17 ]
|
2021-07-16 12:55:53 +02:00
|
|
|
fail-fast: true
|
|
|
|
steps:
|
2022-11-10 19:10:56 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-07-16 12:55:53 +02:00
|
|
|
- name: JDK ${{ matrix.java }}
|
2022-11-10 19:10:56 +01:00
|
|
|
uses: actions/setup-java@v3.6.0
|
2021-07-16 12:55:53 +02:00
|
|
|
with:
|
|
|
|
java-version: ${{ matrix.java }}
|
2021-11-18 01:55:45 +01:00
|
|
|
distribution: 'temurin'
|
2022-12-13 19:19:16 +01:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: gradle/gradle-build-action@v2
|
2021-07-16 12:55:53 +02:00
|
|
|
- name: Build
|
2022-12-13 19:19:16 +01:00
|
|
|
run: ./gradlew build
|