2021-03-31 22:17:03 +02:00
|
|
|
name: Java CI with Gradle
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-02-22 16:27:18 +01:00
|
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
2021-03-31 22:17:03 +02:00
|
|
|
|
2022-10-15 19:20:35 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2021-03-31 22:17:03 +02:00
|
|
|
|
|
|
|
steps:
|
2022-10-15 19:20:35 +02:00
|
|
|
- uses: actions/checkout@v3
|
2023-02-22 16:27:18 +01:00
|
|
|
- uses: gradle/wrapper-validation-action@v1
|
2021-03-31 22:17:03 +02:00
|
|
|
- name: Set up JDK 11
|
2022-10-15 19:20:35 +02:00
|
|
|
uses: actions/setup-java@v3
|
2021-03-31 22:17:03 +02:00
|
|
|
with:
|
2022-10-15 19:20:35 +02:00
|
|
|
distribution: 'temurin'
|
2021-03-31 22:17:03 +02:00
|
|
|
java-version: 11
|
|
|
|
- name: Build with Gradle
|
|
|
|
run: ./gradlew build
|
2022-10-15 19:20:35 +02:00
|
|
|
- uses: actions/upload-artifact@v3
|
2021-03-31 22:17:03 +02:00
|
|
|
with:
|
|
|
|
name: artifact
|
|
|
|
path: build/libs
|