Skip to content

Fix mkdocs site_url to path-based docs URL #12

Fix mkdocs site_url to path-based docs URL

Fix mkdocs site_url to path-based docs URL #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.6"
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Check formatting with ruff
run: uv run ruff format --check .
- name: Lint with ruff
run: uv run ruff check fastworker tests
- name: Run tests
run: uv run pytest --ignore=tests/test_discovery.py --ignore=tests/integration_test.py -v