8000 test · encoderlee/python_example@b741fd8 · GitHub
[go: up one dir, main page]

Skip to content

Commit b741fd8

Browse files
committed
test
1 parent 515c980 commit b741fd8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build_wheels:
7+
name: Build wheels on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [windows-latest]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- name: Build wheels
18+
run: pipx run cibuildwheel==2.11.3
19+
20+
- uses: actions/upload-artifact@v3
21+
with:
22+
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)
0