2021-01-27 01:55:26 +01:00
|
|
|
# This workflow will build a Java project with Gradle
|
2023-03-05 13:56:10 +01:00
|
|
|
# For more information see: https://docs.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
|
2021-01-27 01:55:26 +01:00
|
|
|
|
|
|
|
name: Java CI with Gradle
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2024-04-26 07:05:23 +02:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-22.04
|
2021-01-27 01:55:26 +01:00
|
|
|
steps:
|
2024-04-26 07:05:23 +02:00
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/actions/wrapper-validation@v3
|
2023-12-09 19:16:02 +01:00
|
|
|
- name: Set up JDK 17
|
2024-03-11 14:21:21 +01:00
|
|
|
uses: actions/setup-java@v4
|
2021-01-27 01:55:26 +01:00
|
|
|
with:
|
2023-12-09 19:16:02 +01:00
|
|
|
java-version: 17
|
2023-03-05 13:56:10 +01:00
|
|
|
distribution: 'temurin'
|
2024-03-11 14:21:21 +01:00
|
|
|
cache: 'gradle'
|
2021-01-27 01:55:26 +01:00
|
|
|
- name: Build with Gradle
|
|
|
|
run: ./gradlew build
|