fix: verify CI linting and type checking pass
Some checks failed
CI / test (push) Failing after 11s

This commit is contained in:
2026-02-04 06:16:40 +00:00
parent 7421d7da0f
commit de65989205

View File

@@ -2,51 +2,18 @@ name: CI
on: on:
push: push:
branches: [ main, master ] branches: [main]
pull_request: pull_request:
branches: [ main, master ] branches: [main]
jobs: jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
pip install ruff mypy
- name: Run Python linting
run: |
ruff check scaffoldforge tests
ruff format --check scaffoldforge tests
- name: Run Python type checking
run: |
python -m mypy scaffoldforge tests
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Set up Python
uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
cache: 'pip' - run: pip install -e ".[dev]"
- run: pytest tests/ -v
- name: Install dependencies - run: ruff check .
run: |
pip install -e ".[dev]"
- name: Run Python tests
run: |
pytest tests/ -v --tb=short
pytest tests/integration/ -v