Skip to content

It seems to mistake the second arg as the wrong type, so split them up #1567

It seems to mistake the second arg as the wrong type, so split them up

It seems to mistake the second arg as the wrong type, so split them up #1567

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'