Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bf7bf88

Browse filesBrowse files
authored
ci: update workflows (#582)
1 parent 039022c commit bf7bf88
Copy full SHA for bf7bf88

File tree

2 files changed

+16
-4
lines changed
Filter options

2 files changed

+16
-4
lines changed

‎.github/workflows/test.yml

Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+13-1Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.py }}
2626
allow-prereleases: true
@@ -42,3 +42,15 @@ jobs:
4242
shell: bash
4343
run: |
4444
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

‎.github/workflows/wheel.yml

Copy file name to clipboardExpand all lines: .github/workflows/wheel.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
make cython
3737
3838
- name: Build
39-
uses: pypa/cibuildwheel@v2.15.0
39+
uses: pypa/cibuildwheel@v2.16.5
4040
env:
4141
CIBW_TEST_REQUIRES: "pytest"
4242
CIBW_TEST_COMMAND: "pytest {package}/test"
@@ -52,7 +52,7 @@ jobs:
5252
python -m build -w -o wheelhouse
5353
5454
- name: Upload Wheels to artifact
55-
uses: actions/upload-artifact@v1
55+
uses: actions/upload-artifact@v4
5656
with:
57-
name: Wheels
57+
name: wheels-${{ matrix.os }}
5858
path: wheelhouse

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.