We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3d315 commit e119d61Copy full SHA for e119d61
.github/workflows/publish-pypi.yml
@@ -33,13 +33,11 @@ jobs:
33
run: pipx run twine check --strict dist/*
34
35
- name: Install produced wheel
36
- uses: ./.github/actions/install_requirements
37
- with:
38
- pip-install: dist/*.whl
+ run: pip install dist/*.whl
39
40
- name: Test module is importable using the installed wheel
41
# If more than one module in src/ replace with module name to test
42
- run: python -c "import $(ls --hide='*.egg-info' src | head -1)"
+ run: python -c "import save_and_restore_api"
43
44
45
#- name: Publish to PyPI using trusted publishing
0 commit comments