Skip to content

ops(base infra), api(base api), docs(base docs) #1

ops(base infra), api(base api), docs(base docs)

ops(base infra), api(base api), docs(base docs) #1

Workflow file for this run

name: Caml CI/CD
on:
push:
branches: ["main", "develop"]
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
branches: ["**"]
jobs:
run_tests:
if: github.event.pull_request.draft == false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Install uv & Set Python Version
uses: astral-sh/setup-uv@v5
with:
version: 0.5.23
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --all-groups --frozen
- name: Run tests
run: uv run pytest tests