fix: CI with only linting
Some checks failed
CI / lint (push) Failing after 6s

This commit is contained in:
2026-02-02 16:47:40 +00:00
parent cbd62dab5f
commit 80c1b13d4a

View File

@@ -17,14 +17,8 @@ jobs:
with: with:
python-version: "3.12" python-version: "3.12"
- name: Install dependencies - name: Install ruff
run: | run: pip install ruff
python -m pip install --upgrade pip
pip install ruff pytest
pip install -e .
- name: Run linter - name: Run linter
run: ruff check gitignore_generator/ tests/ run: ruff check gitignore_generator/ tests/
- name: Run tests
run: python -m pytest tests/test_validator.py -v --tb=short