Add initial LICENSE and README files; implement spellcheck workflow
Spellcheck / spellcheck (push) Failing after 5s
Spellcheck / spellcheck (push) Failing after 5s
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
name: Spellcheck
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- "**/*.md"
|
||||
- ".github/workflows/spellcheck.yml"
|
||||
|
||||
jobs:
|
||||
spellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install codespell
|
||||
run: python -m pip install --upgrade codespell
|
||||
|
||||
- name: Check Markdown spelling
|
||||
run: codespell $(git ls-files '*.md')
|
||||
Reference in New Issue
Block a user