Merge pull request #5210 from thomasferrandiz/backport-1.28-multus-dhcp #1871
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codespell | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: {} | |
jobs: | |
spellcheck: | |
name: Spell Check | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python 🐍 | |
uses: actions/setup-python@v4 | |
- name: Install codespell | |
run: | | |
python -m pip install --upgrade pip | |
pip install codespell | |
- name: Check spelling | |
run: codespell --skip=.git,./vendor,./MAINTAINERS,go.mod,go.sum --check-filenames --ignore-regex=.te# --ignore-words=.codespellignore |