We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ebcd8a commit 51eab00Copy full SHA for 51eab00
1 file changed
.github/workflows/ci.yml
@@ -49,10 +49,24 @@ jobs:
49
- name: Test with Pytest
50
run: uv run pytest --log-cli-level=DEBUG -vv -s
51
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
65
release:
66
runs-on: ubuntu-latest
67
needs:
68
- test
69
+ - build
70
concurrency: release
71
if: github.ref == 'refs/heads/main'
72
permissions:
0 commit comments