diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-02-27 23:08:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-27 23:08:30 (GMT) |
commit | 766b7546a564c8e386a3c31eb06fc1b55e8f5a25 (patch) | |
tree | 00391dd04bbc08df63afae3e03e2aecb301ff7ad /.github/workflows | |
parent | 374d998b507d34a6c0a3816a163926a8ba0c483f (diff) | |
download | cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.zip cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.gz cpython-766b7546a564c8e386a3c31eb06fc1b55e8f5a25.tar.bz2 |
bpo-39704: Explicitly pass the path to codecov config (GH-18680)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/coverage.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8e1b764..bf166ab 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -65,7 +65,7 @@ jobs: - name: 'Publish code coverage results' run: | source ./.venv/bin/activate - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -84,6 +84,6 @@ jobs: if: always() run: | make pythoninfo - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -y .github/codecov.yml env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |