Skip to content

Update sovereign docs 12 dec #361

Update sovereign docs 12 dec

Update sovereign docs 12 dec #361

Workflow file for this run

name: Spell Check
on:
pull_request
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install codespell
run: pip install codespell
- name: Run spell check
run: codespell docs/ --config .codespell