-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (72 loc) · 2.42 KB
/
tests.yml
File metadata and controls
93 lines (72 loc) · 2.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: tests
on: [push, pull_request]
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
docutils-version: ['0.18', '0.19']
pytest-version: ['7', '8', '9']
exclude:
# Exclude pytest 7 from Python 3.14 to reduce matrix size
- python-version: '3.14'
pytest-version: '7'
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Install specific pytest version
run: uv pip install "pytest~=${{ matrix.pytest-version }}.0"
- name: Print python and pytest versions
run: |
python -V
uv run python -V
uv run pytest --version
- name: Lint with ruff check
run: uv run ruff check .
- name: Format with ruff format
run: uv run ruff format . --check
- name: Lint with mypy
run: uv run mypy .
- name: Test with pytest
run: uv run py.test --cov=./ --cov-report=xml
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
release:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
permissions:
id-token: write
attestations: write
strategy:
matrix:
python-version: ['3.14']
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Build package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
run: uv build
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
attestations: true
skip-existing: true