-
-
Notifications
You must be signed in to change notification settings - Fork 3
108 lines (103 loc) · 2.64 KB
/
tests.yaml
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
---
name: tests
on:
push:
branches:
- main
- '*.*.*'
pull_request:
branches:
- main
- '*.*.*'
jobs:
tests:
name: py${{ matrix.python }} unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.13'
- '3.12'
- '3.11'
- '3.10'
- '3.9'
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}
- name: Run tests
run: uv run pytest --showlocals
downstream-tests:
name: py${{ matrix.python }} ${{ matrix.downstream }} downstream unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.13'
- '3.12'
- '3.11'
downstream:
- scim2-client
- scim2-server
- scim2-cli
- scim2-tester
steps:
- name: Checkout upstream pyproject
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Checkout downstream pyproject
uses: actions/checkout@v4
with:
repository: python-scim/${{ matrix.downstream }}
path: ${{ matrix.downstream }}
- name: Install Python ${{ matrix.python }}
run: |
cd ${{ matrix.downstream }}
uv python install ${{ matrix.python }}
- name: Install downstream test environment
run: |
cd ${{ matrix.downstream }}
uv sync
uv pip install --upgrade --force-reinstall ..
- name: Run downstream tests
run: |
cd ${{ matrix.downstream }}
uv run pytest --showlocals
minversions:
name: minimum dependency versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install minimum dependencies
run: uv sync --resolution=lowest-direct
- name: Run tests
run: uv run pytest --showlocals
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected]
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install dependencies
run: uv sync --group doc
- run: uv run sphinx-build doc build/sphinx/html