Files
repohealth-cli/.gitea/workflows/repohealth.yml
7000pctAUTO bbeabfa781
Some checks failed
CI / test (push) Failing after 15s
CI / build (push) Has been skipped
CI / lint (push) Failing after 6s
fix: resolve CI issues - remove unused imports and fix code quality
2026-02-05 17:24:28 +00:00

23 lines
510 B
YAML

name: repohealth-cli CI
on:
push:
branches: [main]
paths:
- 'repohealth-cli/**'
pull_request:
branches: [main]
paths:
- 'repohealth-cli/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: cd repohealth-cli && pip install -e ".[dev]"
- run: cd repohealth-cli && pytest tests/ -v
- run: cd repohealth-cli && ruff check src/ tests/