Skip to content

Fix typo in README #124

Fix typo in README

Fix typo in README #124

Workflow file for this run

name: Tests
on: push
jobs:
test:
name: Tests and type checks
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
env:
UV_PYTHON: ${{ matrix.python-version }}
UV_MANAGED_PYTHON: "1"
defaults:
run:
shell: bash
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.10.10"
- name: Install the project
run: uv sync --all-extras --all-groups
- name: Run pytest
run: QRANDOM_API_KEY=key uv run pytest
- name: Run ty
run: uv run ty check .
lint:
name: Lint
runs-on: ubuntu-latest
env:
UV_PYTHON: "3.12"
UV_MANAGED_PYTHON: "1"
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.10.10"
- name: Install the project
run: uv sync --all-extras --all-groups
- name: Check linting
run: uv run ruff check .