Fix workspace builder and tests #197
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: Gradle build | |
| on: | |
| push: | |
| branches: [ dev, main ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: '21' | |
| distribution: 'liberica' | |
| cache: 'gradle' | |
| - name: Gradle Wrapper Validation | |
| uses: gradle/[email protected] | |
| - name: Gradle Build | |
| uses: gradle/gradle-build-action@v3 | |
| with: | |
| arguments: test jvmTest | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v6 | |
| if: ${{ !cancelled() }} # always run even if the previous step fails | |
| with: | |
| report_paths: '**/test-results/**/TEST-*.xml' | |
| annotate_only: true | |
| detailed_summary: true | |
| flaky_summary: true | |
| include_empty_in_summary: false | |
| skip_success_summary: true |