Skip to content

Commit 554b053

Browse files
committed
Fix OS match for coverage upload
1 parent 6007d6a commit 554b053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Upload All coverage to Codecov
3838
uses: codecov/codecov-action@v1
3939
# Only upload this once...
40-
if: ${{ matrix.os == 'Linux' && matrix.python-version == '3.8'}}
40+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'}}
4141
with:
4242
token: ${{ secrets.CODECOV_TOKEN }}
4343
file: ./coverage.xml

0 commit comments

Comments
 (0)