site/.forgejo/workflows/spelling.yml
g_it b5f892f8f6
Some checks failed
Spell Check / Check spelling (push) Failing after 8s
vale / runner / vale (push) Successful in 4s
Make it verbose.
2026-04-08 16:19:53 +02:00

23 lines
689 B
YAML

name: Spell Check
on:
push:
branches:
- main
jobs:
codespell:
name: Check spelling
runs-on: ubuntu-latest
steps:
- name: Checkout repository
run: |
git clone --depth 1 https://token:${{ secrets.ACTIONS_TOKEN }}@gugulet.hu/technical/git/g_it/site.git .
- name: Install codespell
run: |
apt-get update && apt-get install -y python3-pip
pip install codespell
- name: Run codespell
run: codespell -vv --ignore-words-list=gugulet,forgejo,myword 'content/**/*.md'