Fixed environmental damage not stopping when in safe zone causing pla… #1195
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: Build Javadoc | |
on: [push, pull_request] | |
# Should only build javadocs - not publish to pages | |
jobs: | |
build_jdoc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # Checkout repo to remote machine | |
- name: Set up OpenJDK17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '17' | |
- name: Build Javadoc | |
run: | | |
cd $GRADLE_DIR | |
chmod +x ./gradlew | |
./gradlew javadoc | |
env: | |
GRADLE_DIR: 'source' # Modify this to wherever './gradlew' is |