Skip to content

Initial commit: SWE-bench-style evaluation framework for AI agents on… #1

Initial commit: SWE-bench-style evaluation framework for AI agents on…

Initial commit: SWE-bench-style evaluation framework for AI agents on… #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv pip install -e ".[dev]" --system
- name: Lint
run: ruff check src/ tests/
- name: Type check
run: mypy src/cloud_benchmark/
- name: Unit tests
run: pytest tests/unit/ -v --tb=short