fix: add package-data to include templates and verify in CI
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-02 16:25:45 +00:00
parent 57ef6603ef
commit 6fcf5936ac

View File

@@ -71,7 +71,13 @@ jobs:
run: |
python -m build
- name: Verify wheel contents
run: |
unzip -l dist/*.whl | grep templates
- name: Verify installation
run: |
pip install dist/gitignore_generator-1.0.0-py3-none-any.whl
pip install dist/*.whl
python -c "import gitignore_generator; print('Package imported successfully')"
python -c "from gitignore_generator.template_loader import template_loader; print('Template loader imported successfully')"
python -c "from gitignore_generator.cli import main; print('CLI imported successfully')"