We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 729ead2 commit cfded32Copy full SHA for cfded32
.github/workflows/python-test-dev.yml
@@ -24,18 +24,15 @@ jobs:
24
cd howlongtobeatpy
25
python -m pip install --upgrade pip
26
pip install -U pytest
27
- pip install codecov
28
pip install .
29
- name: Test
30
run: |
31
coverage run -m pytest -v && coverage report -m
32
coverage xml
33
- - name: Upload Coverage codecov
34
- env:
35
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
37
- run: |
38
- codecov
+ - name: Upload coverage to Codecov
+ uses: codecov/codecov-action@v3
+ with:
+ token: ${{ secrets.CODECOV_TOKEN }}
39
- name: SonarCloud Scan
40
uses: sonarsource/sonarcloud-github-action@master
41
env:
0 commit comments