chore(deps): update plugin com.diffplug.spotless to v8 #369
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
| name: Test | |
| on: [ push ] | |
| jobs: | |
| Test: | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: adopt | |
| java-version: 11 | |
| cache: gradle | |
| - name: Test | |
| run: ./gradlew test --stacktrace | |
| - name: Javadoc | |
| run: ./gradlew javadoc --stacktrace | |
| - name: Code Coverage | |
| run: ./gradlew jacocoTestReport --stacktrace | |
| - name: Codecov Upload | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| verbose: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |