Skip to content

Fix/checkpointing

Fix/checkpointing #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Ruff Lint
uses: astral-sh/ruff-action@v1
with:
args: check
- name: Run Ruff Format
uses: astral-sh/ruff-action@v1
with:
args: format --check
test:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up UV
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra all
- name: Run tests
run: uv run --frozen pytest