Files
git-commit-message-generator/.gitea/workflows/ci.yml
7000pctAUTO 3de0498d5e
Some checks failed
CI / test (push) Has been cancelled
Fix CI: resolve linting errors and test failures
2026-02-04 18:55:12 +00:00

24 lines
509 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: Run tests and linting
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
python -m pytest tests/ -v --cov=src --cov-report=term-missing
pip install ruff
ruff check src/