2020-11-24 11:41:28 +00:00
|
|
|
---
|
|
|
|
# codespell is a GitHub Actions that runs codespell tool to catch misspell
|
|
|
|
# Reference https://github.com/codespell-project/actions-codespell
|
|
|
|
name: Codespell
|
|
|
|
# yamllint disable-line rule:truthy
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2020-12-02 07:57:02 +00:00
|
|
|
- '*'
|
2020-11-24 11:41:28 +00:00
|
|
|
jobs:
|
|
|
|
codespell:
|
|
|
|
name: codespell
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: codespell
|
|
|
|
uses: codespell-project/actions-codespell@master
|
|
|
|
with:
|
|
|
|
skip: .git,./vendor
|
|
|
|
check_filenames: true
|
|
|
|
ignore_words_list: ExtraVersion,extraversion,ba
|
|
|
|
check_hidden: true
|