Skip to content

Commit ca00584

Browse files
wip
1 parent 3f912bf commit ca00584

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
3+
on: [workflow_dispatch]
4+
5+
jobs:
6+
build_wheels:
7+
name: Build wheels on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-20.04, windows-2019, macos-11]
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Build wheels
17+
uses: pypa/[email protected]
18+
# env:
19+
# CIBW_SOME_OPTION: value
20+
# ...
21+
# with:
22+
# package-dir: .
23+
# output-dir: wheelhouse
24+
# config-file: "{package}/pyproject.toml"
25+
26+
- uses: actions/upload-artifact@v3
27+
with:
28+
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)