.github/workflows: add PR codespell workflow (#3064)

To avoid adding typos to the code base.

Follow up to #3057.

Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
This commit is contained in:
Mateusz Gozdek
2020-11-10 21:43:32 +01:00
committed by GitHub
parent dbc83af77b
commit 9acd4ac4d5
2 changed files with 20 additions and 0 deletions

19
.github/workflows/pr-codespell.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Pull Request Codespell Check
on: [pull_request]
jobs:
codespell:
name: Run Codespell
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v2
- name: Codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico
ignore_words_list: iam,aks,ist,bridget,ue
check_filenames: true
check_hidden: true

View File

@@ -0,0 +1 @@
Added GitHub Workflow running Codespell for spell checking