Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
- name: install requirements
run: pip install -e .[dev]
run: uv sync --all-extras
- name: run pytest
run: python -m pytest
run: uv run pytest
- name: run spellcheck
run: sphinx-build -E -a -W --keep-going -b spelling doc _build
build:
Expand Down
Loading