Skip to content

docs: update README for v0.2.0 — workspace manager, intent tracking, … #12

docs: update README for v0.2.0 — workspace manager, intent tracking, …

docs: update README for v0.2.0 — workspace manager, intent tracking, … #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
version: "latest"
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: uv venv
- run: uv pip install -e ".[dev]"
- run: uv run pytest tests/unit/ -x -q --no-header -p no:cacheprovider -o "addopts="
env:
PYTHONDONTWRITEBYTECODE: 1