Update README.md

This commit is contained in:
Ibrahim Ali
2019-08-08 10:10:05 -07:00
committed by GitHub
parent 4af6f0743e
commit e3f7b8baf8

View File

@@ -10,7 +10,7 @@ Inside your `.github/workflows/workflow.yml` file:
```yaml ```yaml
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
- uses: actions/codecov-action@v1 - uses: actions/codecov-action@v1.0.0
with: with:
token: ${{secrets.CODECOV_TOKEN}} #required token: ${{secrets.CODECOV_TOKEN}} #required
file: ./coverage.xml #optional file: ./coverage.xml #optional
@@ -50,7 +50,7 @@ jobs:
pip install pytest-cov pip install pytest-cov
pytest --cov=./ --cov-report=xml pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov - name: Upload coverage to Codecov
uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1.0.0
with: with:
token: ${{secrets.CODECOV_TOKEN}} token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.xml file: ./coverage.xml