Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[codespell]
skip = Gemfile,Gemfile.lock,jekyll-assets,build
# For a list of available built-in dictionaries, see:
# https://github.com/codespell-project/codespell/tree/master/codespell_lib/data
builtin = clear,rare,informal
ignore-words-list = technic,ba,hist
21 changes: 21 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Check for common misspellings

on:
push:
pull_request:
branches: [develop]

jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Check spelling with codespell
# Configuration should be handled in .codespellrc as much as possible so
# that it runs similarly locally
uses: codespell-project/actions-codespell@master
with:
# Annotate the build, but don't fail it
only_warn: 1