Skip to content

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #131

Add codespell support (config, workflow to detect/not fix) and make it fix few typos

Add codespell support (config, workflow to detect/not fix) and make it fix few typos #131

Workflow file for this run

# This is a GitHub workflow defining a set of jobs with a set of steps. ref:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#
name: Linkcheck
on:
pull_request:
paths:
- "docs/**"
- "**/linkcheck.yaml"
push:
paths:
- "docs/**"
- "**/linkcheck.yaml"
branches-ignore:
- "dependabot/**"
- "pre-commit-ci-update-config"
workflow_dispatch:
jobs:
linkcheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install deps
run: pip install -r docs/requirements.txt
- name: make linkcheck
run: |
cd docs
make linkcheck SPHINXOPTS='--color -W --keep-going'