Skip to content

Commit

Permalink
Add codespell step
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed Feb 12, 2024
1 parent 1c54b1b commit cb71582
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-on-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
if: ${{ github.event_name != 'pull_request'}}
uses: actions/checkout@v3

- name: Run Codespell
uses: codespell-project/actions-codespell@v2
with:
# only show the typo detected but don't make workflow to fail
only_warn: 1
skip: ChangeLog,*.po,LINGUAS
# word to exclude must be always lowercase as must be same of the codespell dictionary
ignore_words_list: gir

- name: Update build environment
run: |
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
Expand Down

0 comments on commit cb71582

Please sign in to comment.