Bump org.spigotmc:spigot-api from 1.20.1-R0.1-SNAPSHOT to 1.20.2-R0.1-SNAPSHOT #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CyberAPI Pull Request Check | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [17] | |
fail-fast: true | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Actions Checkout | |
uses: actions/[email protected] | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Validate Gradle Wrapper | |
uses: gradle/[email protected] | |
- name: Set Gradle Version | |
uses: gradle/[email protected] | |
with: | |
gradle-version: release-candidate | |
- name: Build Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: shadowJar --stacktrace |