Bump gradle-wrapper from 9.5.0 to 9.6.0 #163
Workflow file for this run
This file contains hidden or 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 Pull Request | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - 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: ./gradlew check --exclude-task spotlessApply | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |