-
Notifications
You must be signed in to change notification settings - Fork 15
36 lines (33 loc) · 1.05 KB
/
test.yaml
File metadata and controls
36 lines (33 loc) · 1.05 KB
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: Tests
on:
pull_request:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Install uv and set the python version ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
uv run ruff check --select=E9,F63,F7,F82 --target-version=py39 .
# default set of ruff rules with GitHub Annotations
uv run ruff check --target-version=py39 .
- name: Test with pytest
run: |
uv run pytest --cov=./actual --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}