13
13
with :
14
14
fetch-depth : 0
15
15
- uses : actions/setup-dotnet@v1
16
- - uses : actions/setup-python@v4
17
- - name : Install dependencies
18
- run : |
19
- python -m pip install --upgrade pip
20
- pip install build
16
+ - uses : astral-sh/setup-uv@v4
21
17
- name : Build
22
- run : python -m build
18
+ run : uv build
23
19
- name : Upload source distribution
24
20
uses : actions/upload-artifact@v3
25
21
with :
33
29
- uses : actions/checkout@v3
34
30
with :
35
31
fetch-depths : 0
36
- - uses : actions /setup-python @v4
32
+ - uses : astral-sh /setup-uv @v4
37
33
- name : Install Ruff
38
- run : pip install ruff
34
+ run : uv tool install ruff
39
35
- name : Check format
40
36
run : ruff format --check
41
37
- name : Check lints
46
42
needs : build
47
43
strategy :
48
44
matrix :
49
- os : [ubuntu-latest , windows-latest, macos-latest ]
50
- python : ['3.11', '3.10', '3.9', '3.8'] # pypy3
45
+ os : [ubuntu-22.04 , windows-latest, macos-13 ]
46
+ python : ['3.13', '3.12', '3. 11', '3.10', '3.9', '3.8'] # pypy3
51
47
52
48
steps :
53
49
- uses : actions/checkout@v3
58
54
dotnet-version : ' 6.0.x'
59
55
60
56
- name : Set up Python ${{ matrix.python }}
61
- uses : actions /setup-python @v4
57
+ uses : astral-sh /setup-uv @v4
62
58
with :
63
59
python-version : ${{ matrix.python }}
64
60
76
72
77
73
- name : Install dependencies
78
74
run : |
79
- python -m pip install --upgrade pip
80
- pip install pytest
75
+ uv venv
76
+ uv pip install pytest
81
77
82
78
- name : Download wheel
83
79
uses : actions/download-artifact@v3
@@ -88,11 +84,11 @@ jobs:
88
84
- name : Install wheel
89
85
shell : bash
90
86
run : |
91
- pip install dist/*.whl
87
+ uv pip install dist/*.whl
92
88
93
89
- name : Test with pytest
94
90
run : |
95
- pytest
91
+ uv run pytest
96
92
97
93
deploy :
98
94
runs-on : ubuntu-latest
0 commit comments