Skip to content

chore: update version to 0.4.0 and add packaging dependency #20

chore: update version to 0.4.0 and add packaging dependency

chore: update version to 0.4.0 and add packaging dependency #20

Workflow file for this run

name: ✅ CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: 🔍 Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --all-groups
- run: uv run ruff check src/ tests/
- run: uv run ruff format --check src/ tests/
typecheck:
name: 🔠 Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv sync --all-groups
- run: uv run mypy src/
test:
name: 🧪 Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- run: uv python install ${{ matrix.python-version }}
- run: uv sync --all-groups
- run: uv run pytest -v -m "not integration" --tb=short