Fix CI workflow: replace snip --help with python -c to verify CLI works

This commit is contained in:
2026-03-22 11:27:12 +00:00
parent 9c53349b6a
commit b76b83eda3

View File

@@ -29,7 +29,7 @@ jobs:
- name: Verify package
run: |
python -c "from snip import cli; print('Import successful')"
snip --help
python -c "from snip.cli import cli; cli(['--help'])"
lint:
runs-on: ubuntu-latest