Skip to content

Commit

Permalink
Add GitHub Action for codespell (#629)
Browse files Browse the repository at this point in the history
* Create codespell.yml running on Document only.
  • Loading branch information
cpholguera authored Feb 20, 2022
1 parent bb7ed09 commit 8007dac
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: codespell
on: [pull_request, push]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
with:
path: ./Document
ignore_words_list: ba,compliancy,firt,ist,keypair,ligh,ser,synopsys,zuser

0 comments on commit 8007dac

Please sign in to comment.