/
githubmirror
/
rich
Обзор
Документация
Войти
/
githubmirror
/
rich
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/codespell.yml
10 строк
340 B
Will McGugan
skip lockfiles in codespell
01 окт 2024, 14:59
01 окт 2024, 14:59
d141390
Код
Авторство
О чём код?
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"