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

23 lines
647 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 --toml .codespell.toml