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:
|
2023-03-16 04:00:37 +01:00
|
|
|
build-17:
|
2021-01-27 01:55:26 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-03-05 13:56:10 +01:00
|
|
|
- uses: actions/checkout@v3
|
2023-03-09 19:10:01 +01:00
|
|
|
- uses: gradle/wrapper-validation-action@v1
|
2023-03-16 04:00:37 +01:00
|
|
|
- name: Set up JDK 17
|
2023-03-05 13:56:10 +01:00
|
|
|
uses: actions/setup-java@v3
|
2021-01-27 01:55:26 +01:00
|
|
|
with:
|
2023-03-16 04:00:37 +01:00
|
|
|
java-version: 17
|
2023-03-05 13:56:10 +01:00
|
|
|
distribution: 'temurin'
|
2021-01-27 01:55:26 +01:00
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
- name: Build with Gradle
|
|
|
|
run: ./gradlew build
|