Skip to content

Wave A PR 3: typed errors + 401/429 escalation + body-size + key validation #3

Wave A PR 3: typed errors + 401/429 escalation + body-size + key validation

Wave A PR 3: typed errors + 401/429 escalation + body-size + key validation #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,all]"
- name: Ruff
run: ruff check recost/ tests/
- name: Mypy
run: mypy recost/
- name: Pytest
run: pytest -v