File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ jobs:
22
22
23
23
- name : Verify wheel install
24
24
run : |
25
- uv venv venv-install-whl
26
- source venv-install-whl/bin/activate
25
+ uv venv . venv-install-whl
26
+ source . venv-install-whl/bin/activate
27
27
uv pip install dist/*.whl
28
28
29
29
- name : Verify source install
30
30
run : |
31
- uv venv venv-install-tar
32
- source venv-install-tar/bin/activate
31
+ uv venv . venv-install-tar
32
+ source . venv-install-tar/bin/activate
33
33
uv pip install dist/*.tar.gz
34
34
35
35
- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
41
41
dist/*.whl
42
42
43
43
- run : uvx twine check dist/*
44
+ - run : uvx pydistcheck --inspect dist/*
45
+ - run : uvx pyroma dist/*.tar.gz
46
+ - run : uvx check-wheel-contents dist/*.whl
47
+ - run : uvx check-manifest -v
44
48
45
49
- if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
46
50
run : uv publish --trusted-publishing always
You can’t perform that action at this time.
0 commit comments