site/.forgejo/workflows/spelling.yml
g_it 6e49a26b49
All checks were successful
Spell Check / Check spelling (push) Successful in 9s
vale / runner / vale (push) Successful in 3s
Make it verbose.
2026-04-08 16:21:04 +02:00

23 lines
677 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 --ignore-words-list=gugulet,forgejo,myword '**/*.md'