summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2020-05-18 23:23:07 -0700
committerTimothy Crosley <timothy.crosley@gmail.com>2020-05-18 23:23:07 -0700
commit91c0da918de312738fe1275b755d196031719b52 (patch)
treecb104b7cbc102650a5adec438e03ac333561e05d /.github
parent6cfbb84950a40112c3888bf01c7be6a2625fd107 (diff)
downloadisort-91c0da918de312738fe1275b755d196031719b52.tar.gz
Switch to official code cov action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5a99587c..c264412a 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -51,7 +51,5 @@ jobs:
poetry run pytest tests/ -s --cov=isort/ --cov=tests/ --cov-report=term-missing ${@-} --cov-report html
bash <(curl -s https://codecov.io/bash)
- name: Report Coverage
- if: startsWith(matrix.os, 'ubuntu') && matrix.python-version == '3.8'
- run: |
- poetry run pip install codecov coverage
- bash <(curl -s https://codecov.io/bash)
+ if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'
+ uses: codecov/codecov-action@v1.0.6