Skip to content

Commit c3bdde2

Browse files
authored
Fix codecov
1 parent e6edd75 commit c3bdde2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
pip install --upgrade pip pytest
3333
pip install wheel cython numpy scipy codecov pytest-cov scikit-learn
3434
pytest test --cov
35+
bash <(curl -s https://codecov.io/bash)
3536
- name: Run Tests with skggm
3637
env:
3738
SKGGM_VERSION: a0ed406586c4364ea3297a658f415e13b5cbdaf8
@@ -41,6 +42,7 @@ jobs:
4142
pip install wheel cython numpy scipy codecov pytest-cov scikit-learn
4243
pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION}
4344
pytest test --cov
45+
bash <(curl -s https://codecov.io/bash)
4446
- name: Run Tests with skggm + scikit-learn 0.20.3
4547
env:
4648
SKGGM_VERSION: a0ed406586c4364ea3297a658f415e13b5cbdaf8
@@ -51,9 +53,8 @@ jobs:
5153
pip install scikit-learn==0.20.3
5254
pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION}
5355
pytest test --cov
56+
bash <(curl -s https://codecov.io/bash)
5457
- name: Syntax checking with flake8
5558
run: |
5659
pip install flake8
5760
flake8 --extend-ignore=E111,E114 --show-source;
58-
- name: Codecov
59-
uses: codecov/codecov-action@v2.1.0

0 commit comments

Comments
 (0)