PlotSquared/.github/workflows/build.yml

24 lines
548 B
YAML
Raw Permalink Normal View History

2021-12-17 21:36:56 +01:00
name: build
2020-11-23 18:32:28 +01:00
on:
push:
branches:
2023-01-15 18:40:05 +01:00
- shadow-debug
2020-11-23 18:32:28 +01:00
jobs:
build:
if: github.repository_owner == 'IntellectualSites'
2023-01-15 18:54:50 +01:00
runs-on: macos-latest
2020-11-23 18:32:28 +01:00
steps:
2021-12-17 21:36:56 +01:00
- name: Checkout Repository
uses: actions/checkout@v3
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
2021-12-17 21:36:56 +01:00
- name: Setup Java
uses: actions/setup-java@v3
with:
2021-12-17 21:36:56 +01:00
distribution: temurin
java-version: 17
2023-01-15 18:54:50 +01:00
- name: Build on macos-latest
2023-01-15 20:29:33 +01:00
run: ./gradlew clean build --warning-mode all