Skip to content

Commit

Permalink
Drop spaces between Codecov flags
Browse files Browse the repository at this point in the history
This attempts to keep the flags separated by commas but without
whitespaces, following the official examples.
  • Loading branch information
webknjaz committed Sep 1, 2022
1 parent a42383b commit a6873b2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tox-tests.yaml
Expand Up @@ -142,10 +142,13 @@ jobs:
with:
files: .test-results/pytest/cov.xml
flags: >-
GHA,
${{ runner.os }},
${{ matrix.python-version }},
towncrier-v${{ matrix.towncrier-version }}
GHA,${{
runner.os
}},${{
matrix.python-version
}},towncrier-v${{
matrix.towncrier-version
}}
check: # This job does nothing and is only used for the branch protection
if: always()
Expand Down

1 comment on commit a6873b2

@webknjaz
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this won't be necessary anymore, once codecov/codecov-action#791 is released.

Please sign in to comment.