Skip to content

Commit 2088dc7

Browse files
committed
GitHub Actions: fixed tests report names for Integration Tests
1 parent 85815ef commit 2088dc7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/reusable-integrationTests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,23 @@ jobs:
5656
[ -z "$TEST_NAME" ] && TESTS="" || TESTS="--tests $TEST_NAME"
5757
5858
./gradlew check integrationTest \
59-
-PtestGradleVersion="${{ inputs.gradleVersion }}" \
59+
-PtestGradleVersion="${{ matrix.gradleVersion }}" \
6060
${{ runner.os == 'Windows' && '-PtestGradleUserHome="C:\\testGradleHome"' || '' }} \
6161
--console=plain
6262
6363
- name: Test Report
6464
uses: dorny/test-reporter@v1
6565
if: ${{ always() }}
6666
with:
67-
name: "Unit Tests Report: Gradle ${{ inputs.gradleVersion }} @ ${{ inputs.os }}"
67+
name: "Unit Tests Report: Gradle ${{ matrix.gradleVersion }} @ ${{ matrix.os }}"
6868
path: "**/build/test-results/*/TEST-*.xml"
6969
reporter: java-junit
7070

7171
- name: Collect Test Results
7272
if: ${{ always() }}
7373
uses: actions/upload-artifact@v3
7474
with:
75-
name: test-results-${{ inputs.gradleVersion }}-${{ runner.os }}
75+
name: test-results-${{ matrix.gradleVersion }}-${{ matrix.os }}
7676
path: |
7777
${{ github.workspace }}/build/reports/tests
7878
${{ github.workspace }}/build/reports/configuration-cache

0 commit comments

Comments
 (0)