Skip to content

Bump version: 0.3.1 → 0.3.2 #6

Bump version: 0.3.1 → 0.3.2

Bump version: 0.3.1 → 0.3.2 #6

Workflow file for this run

name: CI
on:
workflow_call:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Sync deps
run: uv sync --dev
- name: Run linting
run: make lint
- name: Run unit tests
run: make tests