Skip to content

Enhance README with usage instructions for oat-postcard #18

Enhance README with usage instructions for oat-postcard

Enhance README with usage instructions for oat-postcard #18

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Sync dependencies
run: uv sync --all-extras
- name: Ruff lint
run: uv run ruff check src tests
- name: Ruff format check
run: uv run ruff format --check src tests
- name: Mypy
run: uv run mypy src
- name: Pytest
run: uv run pytest -q