Skip to content

Release v0.0.3

Release v0.0.3 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # for hatch-vcs
- 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: Install dependencies
run: UV_PYTHON=${{ matrix.python-version }} uv sync --all-extras
- name: Lint
run: UV_PYTHON=${{ matrix.python-version }} uv run ruff check src/ tests/
- name: Format check
run: UV_PYTHON=${{ matrix.python-version }} uv run ruff format --check src/ tests/
- name: Type check
run: UV_PYTHON=${{ matrix.python-version }} uv run mypy src/imgeda/
- name: Test
run: UV_PYTHON=${{ matrix.python-version }} uv run pytest --tb=short -q