fix: simplify CI and add detailed output to debug issues
Some checks failed
CI / test (3.10) (push) Failing after 11s
CI / test (3.11) (push) Failing after 10s
CI / test (3.12) (push) Failing after 12s
CI / lint (push) Failing after 11s
CI / build (push) Successful in 16s

This commit is contained in:
2026-02-02 16:32:39 +00:00
parent f140034156
commit 04f46ab8bc

View File

@@ -71,10 +71,14 @@ jobs:
run: | run: |
python -m build python -m build
- name: Verify installation works - name: List wheel contents
run: |
unzip -l dist/*.whl | head -50
- name: Verify built package
run: | run: |
pip install dist/*.whl pip install dist/*.whl
python -c "import gitignore_generator; print('Package imported successfully')" python -c "import gitignore_generator"
python -c "from gitignore_generator.template_loader import template_loader; print('Template loader imported successfully')" python -c "from gitignore_generator.template_loader import template_loader"
python -c "from gitignore_generator.cli import main; print('CLI imported successfully')" python -c "from gitignore_generator.cli import main"
python -c "templates = template_loader.get_available_templates(); print(f'Found {len(templates)} templates')" python -c "print('All imports successful')"