File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 20
20
uses : actions/checkout@v4
21
21
22
22
- name : Set up Python
23
- uses : actions/setup-python@v4
23
+ uses : actions/setup-python@v5
24
24
with :
25
25
python-version : ${{ matrix.py }}
26
26
allow-prereleases : true
42
42
shell : bash
43
43
run : |
44
44
MSGPACK_PUREPYTHON=1 pytest -v test
45
+
46
+ - name : build packages
47
+ shell : bash
48
+ run : |
49
+ pip install build
50
+ python -m build
51
+
52
+ - name : upload packages
53
+ uses : actions/upload-artifact@v4
54
+ with :
55
+ name : dist-${{ matrix.os }}-${{ matrix.py }}
56
+ path : dist
Original file line number Diff line number Diff line change 36
36
make cython
37
37
38
38
- name : Build
39
- uses : pypa/cibuildwheel@v2.15.0
39
+ uses : pypa/cibuildwheel@v2.16.5
40
40
env :
41
41
CIBW_TEST_REQUIRES : " pytest"
42
42
CIBW_TEST_COMMAND : " pytest {package}/test"
52
52
python -m build -w -o wheelhouse
53
53
54
54
- name : Upload Wheels to artifact
55
- uses : actions/upload-artifact@v1
55
+ uses : actions/upload-artifact@v4
56
56
with :
57
- name : Wheels
57
+ name : wheels-${{ matrix.os }}
58
58
path : wheelhouse
You can’t perform that action at this time.
0 commit comments