Skip to content

docs: finally a good readme version. Thanks chris you project is very… #1

docs: finally a good readme version. Thanks chris you project is very…

docs: finally a good readme version. Thanks chris you project is very… #1

Workflow file for this run

name: CI Workflow
on: [push, pull_request]
jobs:
lint:
name: Lint and Format
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --dev
- name: Run linting
run: uv run ruff check
- name: Run formatting check
run: uv run ruff format --check
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests