-
Notifications
You must be signed in to change notification settings - Fork 20
36 lines (31 loc) · 989 Bytes
/
code-coverage.yml
File metadata and controls
36 lines (31 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Code coverage
on: [push, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.13'
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: '3.13'
- name: Install libsnappy
run: sudo apt-get -y install libsnappy-dev
- name: Install the project
run: uv sync --locked --all-extras --dev --group docs
- name: Generate coverage report
run: uv run pytest -n logical --cov=numbers_parser --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true