Skip to content

Add Sandbox catalog endpoint (GET /v1/sandboxes/catalog) (#20) #94

Add Sandbox catalog endpoint (GET /v1/sandboxes/catalog) (#20)

Add Sandbox catalog endpoint (GET /v1/sandboxes/catalog) (#20) #94

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
checks:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout code
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: pip install -e ".[dev]"
- name: Lint
run: ruff check .
- name: Type check
run: mypy
- name: Unit tests
run: pytest tests