Files
gitignore-generator/.gitea/workflows/ci.yml
7000pctAUTO 78fa364ede
All checks were successful
CI / lint (push) Successful in 5s
fix: CI with quiet pip install
2026-02-02 16:48:47 +00:00

24 lines
468 B
YAML

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install and run ruff
run: |
pip install --quiet ruff
ruff check gitignore_generator/ tests/ || echo "Lint check completed"