Skip to content

Build wheel

Build wheel #2

Workflow file for this run

name: Build wheel
on: [ workflow_dispatch ]
jobs:
build:
name: Build wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build bdist_wheel
run: python setup.py bdist_wheel
- uses: actions/upload-artifact@v3
with:
path: dist/*.whl