Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

[chore] Setup GitHub Actions #1

[chore] Setup GitHub Actions

[chore] Setup GitHub Actions #1

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- id: checkout-repository
name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- id: setup-java
name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: gradle
- id: setup-gradle
name: Setup Gradle
uses: gradle/gradle-build-action@v2.11.1
- id: build
name: Build
run: ./gradlew build