Skip to content

Commit 1cadf69

Browse files
committed
Fix quoting for Gradle command line arguments in test-prs.yml
1 parent b280232 commit 1cadf69

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ jobs:
114114

115115
- name: Test
116116
if: ${{ matrix.test.filter != null }}
117-
run: ./gradlew --info -s ${{ matrix.test.path }} --tests "${{ matrix.test.filter }}" -Ptraining-wheels.gradle-version=${{ env.GRADLE_VERSION }}
117+
run: ./gradlew --info -s ${{ matrix.test.path }} --tests "${{ matrix.test.filter }}" "-Ptraining-wheels.gradle-version=${{ env.GRADLE_VERSION }}"
118118

119119
- name: Test
120120
if: ${{ matrix.test.filter == null }}
121-
run: ./gradlew --info -s ${{ matrix.test.path }} -Ptraining-wheels.gradle-version=${{ env.GRADLE_VERSION }}
121+
run: ./gradlew --info -s ${{ matrix.test.path }} "-Ptraining-wheels.gradle-version=${{ env.GRADLE_VERSION }}"
122122

123123
# Always upload test results
124124
- name: Merge Test Reports

0 commit comments

Comments
 (0)