Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

29 lines
486 B
YAML

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
JAVA_VERSION: 17
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.JAVA_VERSION }}
- name: Build with Gradle
run: ./gradlew build