Skip to content

Cleanup the paper adapters in the master branch (#2339) #1320

Cleanup the paper adapters in the master branch (#2339)

Cleanup the paper adapters in the master branch (#2339) #1320

Workflow file for this run

name: Gradle Build
on: [push, pull_request]
jobs:
build:
name: Build WorldEdit on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
cache: 'gradle'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build -s
- uses: actions/upload-artifact@v3
name: Archive Reports
if: always()
with:
name: reports for ${{ matrix.os }}
path: '**/build/reports/**'
- uses: actions/upload-artifact@v3
name: Archive Logs
if: always()
with:
name: logs for ${{ matrix.os }}
path: '**/*.log'