Skip to content

Fix links in README.md #13

Fix links in README.md

Fix links in README.md #13

Workflow file for this run

name: Spelling Check
on:
push:
branches:
- 'main'
- 'master'
pull_request:
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v4
id: cspell
with:
files: "**/*.md"
config: 'cspell.json'
check_dot_files: explicit
strict: true
verbose: true
inline: error
- name: Show Results
env:
outputs: ${{ toJSON(steps.cspell) }}
run: |
echo "$outputs"