Skip to content

feat: Add REST api + support sync API (#11) #36

feat: Add REST api + support sync API (#11)

feat: Add REST api + support sync API (#11) #36

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
jobs:
uv-example:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Format
run: uv run ruff format --exit-non-zero-on-format
- name: Lint
run: uv run ruff check .
# - name: Run tests
# run: uv run pytest tests
- name: Minimize uv cache
run: uv cache prune --ci