Bot: show list of autosaves and allow players to load autosaves #1265
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
# Runs all build checks on any pull request or merges to master | |
name: Verify | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Run Build Checks | |
# We skip 'spotlessApply' such that only 'spotlessCheck' will run to validate formatting. | |
# This is a good setup for a CI server, meanwhile if a developer runs 'verify', they | |
# will have the 'spotlessApply' task run and it will automatically format the code. | |
run: ./verify --exclude-task spotlessApply |