Files
scaffoldforge/.gitea/workflows/ci.yml
7000pctAUTO 718290943b
Some checks failed
CI / lint (push) Failing after 12s
CI / typecheck (push) Failing after 17s
CI / test (push) Failing after 13s
fix: resolve CI linting and type checking errors
2026-02-04 06:20:10 +00:00

39 lines
812 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -e ".[dev]"
- run: ruff check scaffoldforge tests
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -e ".[dev]"
- run: mypy scaffoldforge tests
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -e ".[dev]"
- run: pytest tests/ -v