Skip to content

feat: faster branching in value_to_builtin #37

feat: faster branching in value_to_builtin

feat: faster branching in value_to_builtin #37

Workflow file for this run

name: build wheels
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build-wheels:
name: Build wheels for ${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-latest
strategy:
matrix:
PYTHON_VERSION: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Build wheels
run: pip wheel --no-deps -w wheelhouse .
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: typeline-wheels-${{ matrix.PYTHON_VERSION }}
path: ./wheelhouse/typeline*.whl
if-no-files-found: error