Skip to content

v0.2.0: point SDK at api.latence.ai gateway #13

v0.2.0: point SDK at api.latence.ai gateway

v0.2.0: point SDK at api.latence.ai gateway #13

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: python -m pip install -e ".[dev]"
- name: Lint
run: python -m ruff check .
- name: Test
run: python -m pytest