Skip to content

Update broken link

Update broken link #24

Workflow file for this run

name: Spelling
on:
pull_request:
push:
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Style dependencies
run: |
python -m pip install --upgrade pip
pip install codespell
- name: Run codespell
run: codespell *.md