fix: replace is_safe_url
with url_has_allowed_host_and_scheme
due…
#4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
name: docs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: 'pip' | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- run: python -m pip install -r docs/requirements.txt | |
- run: python setup.py install | |
- run: codespell -w *.rst | |
- run: codespell -w --skip docs/spelling_wordlist docs | |
- name: Build docs | |
run: | | |
cd docs | |
sphinx-build -b dirhtml -n -d build/doctrees . build/dirhtml |