Skip to content

Commit 05dbcef

Browse files
Fix Actions workflow failing on double quotes formatting
1 parent 823d02b commit 05dbcef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/run-test-suite.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,11 @@ jobs:
146146
# Also, it means code coverage is only generated if the test suite is
147147
# passing at least for that job, avoiding useless coverage reports.
148148
uses: codecov/codecov-action@v3
149+
# Warning: GitHub Actions expressions require single-quoted strings.
150+
# Double quotes will break workflow validation (even though YAML allows
151+
# them). So don't change the quoting below.
149152
if: |
150-
matrix.os == "ubuntu-latest" && matrix.python-version == "3.10"
153+
matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
151154
with:
152155
file: |
153156
${{ github.workspace }}/main/cf/test/cf_coverage_reports/coverage.xml

0 commit comments

Comments
 (0)