Skip to content

add examples for running the sync from github actions #35

add examples for running the sync from github actions

add examples for running the sync from github actions #35

Workflow file for this run

name: Python CI
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
name: python-ci
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests