mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2025-01-08 19:47:56 +01:00
26 lines
621 B
YAML
26 lines
621 B
YAML
name: Java CI with Gradle
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
|
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Gradle
|
|
uses: gradle/actions/setup-gradle@v4
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 17
|
|
check-latest: true
|
|
- name: Build with Gradle
|
|
run: ./gradlew build
|