build action
build / build (push) Failing after 36s

This commit is contained in:
Matteo Rosati
2026-04-22 23:20:22 +02:00
parent 091f04ef10
commit 8c59472f57
+29
View File
@@ -0,0 +1,29 @@
name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
run: |
curl -Ls https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Build package
run: |
uv build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: python-wheel
path: dist/*.whl