Files
gitignore-generator/.gitea/workflows/ci.yml
7000pctAUTO d0f260418a
Some checks failed
CI / lint (push) Failing after 5s
fix: minimal CI - lint only
2026-02-02 16:43:19 +00:00

25 lines
433 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
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install ruff
run: pip install ruff
- name: Run linter
run: ruff check gitignore_generator/ tests/