Add initial LICENSE and README files; implement spellcheck workflow
Spellcheck / spellcheck (push) Failing after 5s

This commit is contained in:
2026-06-02 17:46:27 +02:00
parent e866ca4dea
commit 404d5e7fac
3 changed files with 74 additions and 0 deletions
+24
View File
@@ -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')