WIP: Tick-Distance property #37
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: Verify project build | |
on: | |
pull_request: | |
branches: | |
- staging | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Show debug info | |
run: ./gradlew --version | |
- name: Setup Crucible | |
run: ./gradlew cleanCache clean setupCrucible --refresh-dependencies | |
- name: Build Crucible distribution packages | |
run: ./gradlew buildPackages |