Skip to content

documentation

documentation #1

Workflow file for this run

ame: Spell Check

Check failure on line 1 in .github/workflows/spell-check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/spell-check.yml

Invalid workflow file

The workflow is not valid. .github/workflows/spell-check.yml (Line: 1, Col: 1): Unexpected value 'ame'
on:
push:
branches:
- main
pull_request:
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Install codespell
- name: Install codespell
run: |
pip install codespell
# Run codespell
- name: Run codespell
run: |
codespell --skip="*.png,*.jpg,*.jpeg,*.gif,*.svg,*.ico,*.pdf,*.js" --ignore-words-list="nd,te,OT" --check-filenames