nonebot2/.github/workflows/codecov.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2021-12-10 09:01:56 +00:00
name: Code Coverage
on:
push:
branches:
- master
2021-12-10 09:01:56 +00:00
pull_request:
paths:
- "nonebot/**"
- "packages/**"
- "tests/**"
2021-12-10 09:01:56 +00:00
jobs:
test:
name: Test Coverage
runs-on: ${{ matrix.os }}
concurrency:
2022-02-16 06:41:39 +00:00
group: test-coverage-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }}
cancel-in-progress: true
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
env:
OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
2021-12-10 09:01:56 +00:00
steps:
- uses: actions/checkout@v3
2021-12-10 09:01:56 +00:00
- name: Setup Python environment
uses: ./.github/actions/setup-python
with:
2022-01-13 10:06:07 +00:00
python-version: ${{ matrix.python-version }}
2021-12-20 02:10:22 +00:00
- name: Run Pytest
2021-12-10 09:01:56 +00:00
run: |
cd tests/
2022-01-10 03:53:02 +00:00
poetry run pytest -n auto --cov-report xml
2021-12-10 09:01:56 +00:00
- name: Upload coverage report
uses: codecov/codecov-action@v3
2021-12-10 09:01:56 +00:00
with:
env_vars: OS,PYTHON_VERSION
2021-12-10 09:01:56 +00:00
files: ./tests/coverage.xml
flags: unittests