mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
27 lines
533 B
YAML
27 lines
533 B
YAML
name: Code Coverage
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Run Pytest and Upload Coverage
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Python environment
|
|
uses: ./.github/actions/setup-python
|
|
|
|
- name: Run Pytest
|
|
run: |
|
|
cd tests/
|
|
poetry run pytest -n auto --cov-report xml
|
|
|
|
- name: Upload coverage report
|
|
uses: codecov/codecov-action@v2
|
|
with:
|
|
files: ./tests/coverage.xml
|
|
flags: unittests
|