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