We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823d02b commit 05dbcefCopy full SHA for 05dbcef
1 file changed
.github/workflows/run-test-suite.yml
@@ -146,8 +146,11 @@ jobs:
146
# Also, it means code coverage is only generated if the test suite is
147
# passing at least for that job, avoiding useless coverage reports.
148
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.
152
if: |
- matrix.os == "ubuntu-latest" && matrix.python-version == "3.10"
153
+ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
154
with:
155
file: |
156
${{ github.workspace }}/main/cf/test/cf_coverage_reports/coverage.xml
0 commit comments