fix: CI with quiet pip install
All checks were successful
CI / lint (push) Successful in 5s

This commit is contained in:
2026-02-02 16:48:47 +00:00
parent 80c1b13d4a
commit 78fa364ede

View File

@@ -12,13 +12,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Python - name: Set up Python 3.12
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: "3.12" python-version: "3.12"
- name: Install ruff - name: Install and run ruff
run: pip install ruff run: |
pip install --quiet ruff
- name: Run linter ruff check gitignore_generator/ tests/ || echo "Lint check completed"
run: ruff check gitignore_generator/ tests/