Skip to content

BREAKING(v3): CommunicationsResource sub-namespaces (rfqs/quotes) + standardize list_all_<noun> naming #524

BREAKING(v3): CommunicationsResource sub-namespaces (rfqs/quotes) + standardize list_all_<noun> naming

BREAKING(v3): CommunicationsResource sub-namespaces (rfqs/quotes) + standardize list_all_<noun> naming #524

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy kalshi/
- name: Test
run: uv run pytest tests/ -v