branch: elpa/cider
commit 35716850bebe2991bdfacc5e0b9c5ff97e716034
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Remove dead misspell job from spell checking workflow
The misspell project is unmaintained and its git.io install URL
is deprecated. Codespell remains as the sole spell checker.
---
.github/workflows/spell_checking.yml | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/.github/workflows/spell_checking.yml
b/.github/workflows/spell_checking.yml
index 6e746844690..a8acf49e861 100644
--- a/.github/workflows/spell_checking.yml
+++ b/.github/workflows/spell_checking.yml
@@ -19,12 +19,3 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Check spelling with codespell
run: codespell --ignore-words=codespell.txt || exit 1
- misspell:
- name: Check spelling with misspell
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - name: Install
- run: wget -O - -q https://git.io/misspell | sh -s -- -b .
- - name: Misspell
- run: ./misspell -error