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

27 lines
496 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 and test
run: |
cd app
pip install -e ".[dev]"
pytest tests/ -v
- name: Install and run linting
run: |
cd app
pip install ruff
ruff check .