2023-10-31 09:02:31 +01:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
2024-03-13 01:42:59 +01:00
|
|
|
fetch-depth: 0
|
2023-10-31 09:02:31 +01:00
|
|
|
fetch-tags: true
|
|
|
|
|
|
|
|
- name: Setup JDK 17
|
2024-03-13 01:42:59 +01:00
|
|
|
uses: actions/setup-java@v4
|
2023-10-31 09:02:31 +01:00
|
|
|
with:
|
|
|
|
java-version: '17'
|
|
|
|
distribution: 'temurin'
|
|
|
|
|
|
|
|
- name: Build with Gradle
|
2024-03-13 01:42:59 +01:00
|
|
|
uses: gradle/actions/setup-gradle@v3
|
2023-10-31 09:02:31 +01:00
|
|
|
with:
|
|
|
|
arguments: build
|