Skip to content

Exposed public API via __init__ and added v0.2.0 migration guide #97

Exposed public API via __init__ and added v0.2.0 migration guide

Exposed public API via __init__ and added v0.2.0 migration guide #97

Workflow file for this run

name: ci
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v6
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --all-groups
- name: CI
run: make ci