Skip to content

docs(container): add README explaining server container configuration… #39

docs(container): add README explaining server container configuration…

docs(container): add README explaining server container configuration… #39

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
os: [ubuntu-latest]
include:
- python-version: "3.12"
os: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install uv and set Python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Run linter and static analysis
run: |
uv run ruff check
uv run ruff format --check
- name: Run tests
run: uv run pytest