Skip to content

Feature/async - v2.0.6 (#76) #32

Feature/async - v2.0.6 (#76)

Feature/async - v2.0.6 (#76) #32

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Setup uv
uses: astral-sh/setup-uv@v7
- name: Sync dependencies
run: uv sync --group dev --group docs
- name: Run unit tests
run: uv run pytest -q
- name: Build docs
run: uv run mkdocs build