mirror of
https://github.com/Textualize/rich.git
synced 2026-03-28 23:27:11 +00:00
11 lines
340 B
YAML
11 lines
340 B
YAML
name: codespell
|
|
on: [pull_request, push]
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: python3 -m pip install codespell
|
|
- run: codespell --ignore-words-list="ba,fo,hel,revered,womens"
|
|
--skip="./README.*.md,*.svg,*.ai,./benchmarks/snippets.py,./tests,./tools,*.lock"
|