-
Notifications
You must be signed in to change notification settings - Fork 20
47 lines (39 loc) · 1.34 KB
/
ci.yml
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
37
38
39
40
41
42
43
44
45
46
47
# Basic workflow for building and testing the pip installation
name: Continuous Integration
on:
pull_request:
branches: [ main, develop ]
types: [opened, synchronize, reopened, edited]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
test:
name: py${{ matrix.versions.python-version }} ${{ matrix.versions.resolution }}
runs-on: ubuntu-latest
strategy:
matrix:
versions:
- python-version: '3.10'
resolution: lowest-direct
- python-version: '3.11'
resolution: highest
- python-version: '3.12'
resolution: highest
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.versions.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.versions.python-version }}
- name: Install dependencies
run: |
pip install uv
uv pip install . -r pyproject.toml --system --extra dev --resolution ${{ matrix.versions.resolution }}
- name: Execute Tests
run: |
coverage run -m pytest -n auto --doctest-glob="README.md"
coverage report -m
coverage xml
- name: Upload Coverage Report to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml