Skip to content

Commit

Permalink
codespell: Add GitHub actions job to the CI
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
  • Loading branch information
mjtrangoni authored and harry671003 committed Aug 20, 2024
1 parent 349f0ca commit a054482
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,20 @@ jobs:
- name: Linting & vetting
run: make go-lint

codespell:
runs-on: ubuntu-latest
name: Check misspelled words
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run codespell
uses: codespell-project/actions-codespell@v2
with:
check_filenames: false
check_hidden: true
skip: ./pkg/*,./internal/*,./mixin/vendor/*,./.bingo/*,go.mod,go.sum
ignore_words_list: re-use,intrumentation,mmaped,nd,serie

e2e:
strategy:
fail-fast: false
Expand Down

0 comments on commit a054482

Please sign in to comment.