Fix final variable definition that is used in a for loop being moved … #1595
Workflow file for this run
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [11, 17, 19] | |
runs-on: ubuntu-22.04 | |
container: | |
image: eclipse-temurin:${{ matrix.java }} | |
options: --user root | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Build with Gradle | |
run: | | |
chmod +x gradlew | |
./gradlew build --stacktrace | |
- name: Archive test results | |
if: "${{ always() }}" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "test-results-java${{ matrix.java }}" | |
path: | | |
build/reports/ | |
plugins/*/build/reports/ | |
build/test-results/**/*.xml | |
- name: Codecov | |
uses: codecov/[email protected] | |
publish-test-results: | |
runs-on: ubuntu-22.04 | |
needs: [build] | |
permissions: | |
issues: write | |
pull-requests: write | |
checks: write | |
if: success() || failure() | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
check_name: Test Results | |
files: artifacts/*/build/test-results/**/*.xml |