Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hspark92 committed Nov 27, 2023
1 parent 5a08be0 commit d93f390
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and upload to PyPI

on: [push, pull_request]
# workflow_dispatch:
# pull_request:
# push:
# branches:
# - main
# release:
# types:
# - published

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-11, windows-2019]

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
# Build wheels for CPython only, skipping PyPy
CIBW_BUILD: "cp*"
CIBW_SKIP: "*-pp*"

- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

0 comments on commit d93f390

Please sign in to comment.