Files
git-commit-message-generator/.gitea/workflows/ci.yml
7000pctAUTO e1c18d0451
Some checks failed
CI / test (push) Failing after 14s
Fix CI: add linting step back
2026-02-04 18:59:52 +00:00

30 lines
585 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
cd app
pip install -e ".[dev]"
pip install ruff
- name: Run tests
run: |
cd app
pytest tests/ -v --cov=src --cov-report=term-missing
- name: Check linting
run: |
cd app
ruff check src/