mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-06 09:33:45 +01:00
18 lines
388 B
YAML
18 lines
388 B
YAML
name: "build"
|
|
|
|
on: ["pull_request", "push"]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- name: "Checkout Repository"
|
|
uses: "actions/checkout@v2.3.4"
|
|
- name: "Setup JDK 16"
|
|
uses: "actions/setup-java@v2.2.0"
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: "16"
|
|
- name: "Clean Build"
|
|
run: "./gradlew clean build"
|