Files
auto-readme-cli/.gitea/workflows/ci.yml
7000pctAUTO ab6261d379
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI ruff configuration issues
- Add ruff>=0.1.0 to dev dependencies in pyproject.toml
- Remove redundant pip install ruff step from CI workflow
2026-02-05 09:43:45 +00:00

38 lines
806 B
YAML

name: CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
timeout: 600
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest -xvs --tb=short
- name: Run linting
run: |
ruff check --fix . --exclude="database/*" --exclude="orchestrator/*" --exclude="web/*" --exclude="local-ai-commit-reviewer/*" --exclude="mcp_servers/*" --exclude="logs/*"