Spotless check #32
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: 'Spotless check' | |
on: | |
schedule: | |
# Run at AM 10:00 on every day-of-weak from Monday through Friday. | |
- cron: 0 10 * * 1-5 | |
pull_request: | |
jobs: | |
spotless-check: | |
name: Spotless Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Spotless Check | |
run: | | |
./gradlew spotlessCheck |