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 ed3129f commit 04fdf21Copy full SHA for 04fdf21
.github/workflows/test.yml
@@ -80,3 +80,12 @@ jobs:
80
POETRY_VIRTUALENVS_CREATE: false
81
- name: Run pytest check
82
run: poetry run pytest -vv -n auto --cov="taskiq_redis" .
83
+ - name: Generate report
84
+ run: poetry run coverage xml
85
+ - name: Upload coverage reports to Codecov with GitHub Action
86
+ uses: codecov/codecov-action@v3
87
+ if: matrix.py_version == '3.9'
88
+ with:
89
+ token: ${{ secrets.CODECOV_TOKEN }}
90
+ fail_ci_if_error: true
91
+ verbose: true
0 commit comments