Skip to content

Add arena alignment & manual timestamp support #11

Add arena alignment & manual timestamp support

Add arena alignment & manual timestamp support #11

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Sync (locked)
run: uv sync --frozen --python ${{ matrix.python-version }}
- name: Lint (ruff)
run: uv run ruff check .
- name: Format check (ruff)
run: uv run ruff format --check .
- name: Types (mypy)
run: uv run mypy src
- name: Tests (pytest)
run: uv run pytest