AxiomPaperPlugin/.github/workflows/build.yml

30 Zeilen
903 B
YAML

2021-07-16 12:55:53 +02:00
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:
2021-11-18 01:55:45 +01:00
java: [ 17 ]
2021-07-16 12:55:53 +02:00
fail-fast: true
steps:
- uses: actions/checkout@v2
- name: JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
2021-11-18 01:55:45 +01:00
distribution: 'temurin'
2021-08-09 20:35:26 +02:00
- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
2021-07-16 12:55:53 +02:00
- name: Build
run: ./gradlew build --stacktrace