Skip to content

Commit 51eab00

Browse files
committed
chore: build system to make sure it doesn't break
1 parent 6ebcd8a commit 51eab00

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,24 @@ jobs:
4949
- name: Test with Pytest
5050
run: uv run pytest --log-cli-level=DEBUG -vv -s
5151
shell: bash
52+
53+
build:
54+
name: Build Package
55+
runs-on: ubuntu-latest
56+
steps:
57+
- uses: actions/checkout@v5
58+
- name: Set up uv
59+
uses: astral-sh/setup-uv@v7
60+
with:
61+
python-version: "3.11"
62+
activate-environment: true
63+
- name: Build package
64+
run: uv build
5265
release:
5366
runs-on: ubuntu-latest
5467
needs:
5568
- test
69+
- build
5670
concurrency: release
5771
if: github.ref == 'refs/heads/main'
5872
permissions:

0 commit comments

Comments
 (0)