File tree 1 file changed +21
-4
lines changed
1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,36 @@ jobs:
19
19
- uses : actions/setup-python@v4
20
20
with :
21
21
python-version : " 3.10"
22
- - name : Setup uv
22
+ - name : Setup dependencies
23
+ # Set up the virtual environment and install dev dependencies (JS & Python)
23
24
run : |
24
25
curl -LsSf https://astral.sh/uv/install.sh | sh
25
26
uv venv
26
- shell : bash
27
- - name : Generate distribution
28
- run : |
29
27
source .venv/bin/activate
30
28
uv pip install ".[dev]"
31
29
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
32
36
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
33
42
npm run dist
34
43
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
35
52
shell : bash
36
53
- uses : ncipollo/release-action@v1
37
54
with :
You can’t perform that action at this time.
0 commit comments