Skip to content

build: Update to ScreamingPluginBuilder 2.0.0 #9

build: Update to ScreamingPluginBuilder 2.0.0

build: Update to ScreamingPluginBuilder 2.0.0 #9

Workflow file for this run

name: BedWars Test CI
on: [push, pull_request]
jobs:
build:
# Only run on PRs if the source branch is on a different repo. We do not need to run everything twice.
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
add-job-summary-as-pr-comment: on-failure
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean checkLicenses build --stacktrace --warning-mode all