Merge pull request #4542 from radarhere/success

Removed success conditions
This commit is contained in:
Hugo van Kemenade 2020-04-10 08:11:03 +03:00 committed by GitHub
commit caeae8f36b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 6 deletions

View File

@ -46,7 +46,6 @@ jobs:
sudo chown -R runner $GITHUB_WORKSPACE
- name: After success
if: success()
run: |
PATH="$PATH:~/.local/bin"
docker start pillow_container
@ -59,7 +58,6 @@ jobs:
MATRIX_DOCKER: ${{ matrix.docker }}
- name: Upload coverage
if: success()
uses: codecov/codecov-action@v1
with:
flags: GHA_Docker

View File

@ -352,13 +352,11 @@ jobs:
path: Tests/errors
- name: After success
if: success()
run: |
.ci/after_success.sh
shell: pwsh
- name: Upload coverage
if: success()
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml

View File

@ -102,12 +102,10 @@ jobs:
make doccheck
- name: After success
if: success()
run: |
.ci/after_success.sh
- name: Upload coverage
if: success()
run: bash <(curl -s https://codecov.io/bash) -F ${{ matrix.codecov-flag }}
env:
CODECOV_NAME: ${{ matrix.os }} Python ${{ matrix.python-version }}