Skip to content

1.20.1 Port

1.20.1 Port #4

Workflow file for this run

name: 'Build PR'
on:
pull_request:
paths-ignore:
- '*.md'
- 'LICENSE'
- '.github/**'
- '.gitignore'
jobs:
build:
runs-on: ubuntu-latest
steps:
- { uses: actions/checkout@v2 }
- { name: 'Set up JDK 17', uses: actions/setup-java@v2, with: { distribution: 'adopt', java-version: '17' } }
- { name: Build with Gradle, id: build, env: { USE_ALPHAS: false }, run: 'chmod +x gradlew && ./gradlew build' }