Skip to content

Bump hatch version patch = 0.4.1 #65

Bump hatch version patch = 0.4.1

Bump hatch version patch = 0.4.1 #65

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
timeout-minutes: 5
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --all-extras --dev
- run: uv run ruff check
- run: uv run ruff format --diff
- run: uv run pytest