Mirror von
https://github.com/Moulberry/AxiomPaperPlugin.git
synchronisiert 2024-11-08 17:40:04 +01:00
23 Zeilen
644 B
YAML
23 Zeilen
644 B
YAML
name: Build
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
build:
|
|
# Only run on PRs if the source branch is on someone else's repo
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 17 ]
|
|
fail-fast: true
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: JDK ${{ matrix.java }}
|
|
uses: actions/setup-java@v3.6.0
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
cache: 'gradle'
|
|
distribution: 'temurin'
|
|
- name: Build
|
|
run: ./gradlew build --stacktrace
|