Skip to content

Commit b5b58e2

Browse files
committed
Clean up release workflow
1 parent 5855435 commit b5b58e2

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

.github/workflows/release.yml

+21-4
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,36 @@ jobs:
1919
- uses: actions/setup-python@v4
2020
with:
2121
python-version: "3.10"
22-
- name: Setup uv
22+
- name: Setup dependencies
23+
# Set up the virtual environment and install dev dependencies (JS & Python)
2324
run: |
2425
curl -LsSf https://astral.sh/uv/install.sh | sh
2526
uv venv
26-
shell: bash
27-
- name: Generate distribution
28-
run: |
2927
source .venv/bin/activate
3028
uv pip install ".[dev]"
3129
npm i
30+
shell: bash
31+
- name: Run tests
32+
# Run all tests before generating the distribution
33+
run: |
34+
source .venv/bin/activate
35+
npm run build
3236
npm run test
37+
shell: bash
38+
- name: Generate distribution
39+
# Run setup.py to generate the distribution
40+
run: |
41+
source .venv/bin/activate
3342
npm run dist
3443
npm pack && mv *.tgz dist/
44+
- name: Validate distribution
45+
# Run tests again using the generated wheel file
46+
run: |
47+
uv venv test-dist
48+
source dist/bin/activate
49+
WHL_FILE=$(ls dist/*.whl)
50+
uv pip install "${WHL_FILE}[dev]"
51+
npm run test
3552
shell: bash
3653
- uses: ncipollo/release-action@v1
3754
with:

0 commit comments

Comments
 (0)