25 lines
488 B
YAML
25 lines
488 B
YAML
|
name: Build
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v4
|
||
|
with:
|
||
|
fetch-depth: 1000
|
||
|
fetch-tags: true
|
||
|
|
||
|
- name: Setup JDK 17
|
||
|
uses: actions/setup-java@v2
|
||
|
with:
|
||
|
java-version: '17'
|
||
|
distribution: 'temurin'
|
||
|
|
||
|
- name: Build with Gradle
|
||
|
uses: gradle/gradle-build-action@v2
|
||
|
with:
|
||
|
arguments: build
|