-
Notifications
You must be signed in to change notification settings - Fork 16
59 lines (56 loc) · 1.74 KB
/
tests.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
48
49
50
51
52
53
54
55
56
57
58
59
name: Tests
on:
push:
pull_request:
branches: [ main ]
workflow_dispatch:
env:
UV_SYSTEM_PYTHON: 1
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
cache-dependency-glob: |
**/pyproject.toml
- name: Install dependencies
run: uv sync --all-extras
# NumPy 2.0 is not available for Python 3.8 and older versions, which leads to broken tests
- name: Lint with Mypy (Python 3.8)
run: uv run mypy crowdkit
if: matrix.python-version == '3.8'
- name: Lint with Mypy
run: uv run mypy crowdkit tests
if: matrix.python-version != '3.8'
# pyupgrade is incompatible with Python 3.8 and older versions
- name: Pre-Commit Check
uses: pre-commit/[email protected]
if: matrix.python-version != '3.8'
- name: Test with pytest
run: uv run coverage run --source crowdkit -m pytest
- name: Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: uv run codecov
if: matrix.python-version == '3.13'
- name: Run MkDocs
run: uv run mkdocs build --strict
- name: Build wheel
run: |
uv run python3 -m build --sdist --wheel .
uv run twine check --strict dist/*
- name: Validate CITATION.cff
uses: citation-file-format/[email protected]
with:
args: "--validate"