fix: minimal CI - only test and lint jobs
Some checks failed
CI / test (3.10) (push) Failing after 13s
CI / test (3.11) (push) Failing after 12s
CI / test (3.12) (push) Failing after 12s
CI / lint (push) Failing after 9s

This commit is contained in:
2026-02-02 16:34:23 +00:00
parent 04f46ab8bc
commit fc57453f1d

View File

@@ -50,35 +50,3 @@ jobs:
- name: Run linter - name: Run linter
run: | run: |
ruff check gitignore_generator/ tests/ ruff check gitignore_generator/ tests/
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: |
python -m build
- name: List wheel contents
run: |
unzip -l dist/*.whl | head -50
- name: Verify built package
run: |
pip install dist/*.whl
python -c "import gitignore_generator"
python -c "from gitignore_generator.template_loader import template_loader"
python -c "from gitignore_generator.cli import main"
python -c "print('All imports successful')"