File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments