Skip to content

Initial code

Initial code #4

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
jobs:
build-wheel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
python-version: "3.14"
- name: Adjust version for non-tagged build
if: github.event_name == 'pull_request' || (github.event_name == 'push' && !startsWith(github.ref, 'refs/tags'))
run: uv run .github/scripts/adjust_version.py
- run: uv build --wheel
- uses: actions/upload-artifact@v6
with:
name: dist
path: dist/