We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b075bb7 commit 3a34c46Copy full SHA for 3a34c46
.github/workflows/tox.yml
@@ -101,7 +101,7 @@ jobs:
101
- name: Upload coverage data (2 of 3 attempts)
102
id: codecov2
103
continue-on-error: true
104
- if: ${{ startsWith(matrix.passed_name, 'py') }} and steps.codecov1.outcome == 'failure'
+ if: ${{ startsWith(matrix.passed_name, 'py') and steps.codecov1.outcome == 'failure' }}
105
uses: codecov/codecov-action@v4
106
with:
107
name: ${{ matrix.passed_name }}
@@ -111,7 +111,7 @@ jobs:
111
112
- name: Upload coverage data (3 of 3 attempts)
113
id: codecov3
114
- if: ${{ startsWith(matrix.passed_name, 'py') }} and steps.codecov2.outcome == 'failure'
+ if: ${{ startsWith(matrix.passed_name, 'py') and steps.codecov2.outcome == 'failure' }}
115
116
117
0 commit comments