-
-
Notifications
You must be signed in to change notification settings - Fork 10
29 lines (27 loc) · 687 Bytes
/
test.yaml
File metadata and controls
29 lines (27 loc) · 687 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
on:
push:
paths:
- "**.py"
- "pyproject.toml"
- "uv.lock"
name: test
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v5
with:
version: "0.6.3"
python-version: "${{ matrix.python-version }}"
enable-cache: true
cache-dependency-glob: "uv.lock"
- run: uv sync --all-extras
- run: uv run pytest --cov catppuccin