Skip to content

Commit

Permalink
Add spell checking GitHub Actions workflow
Browse files Browse the repository at this point in the history
This PR adds spell checking GitHub Actions workflow and fixes typos.
Follow up: ruby/lrama#120
  • Loading branch information
ydah committed Jul 4, 2024
1 parent e105c42 commit 2315985
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Empty file added .codespellignore
Empty file.
15 changes: 15 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CodeSpell
on:
- pull_request
jobs:
codespell:
name: CodeSpell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CodeSpell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
ignore_words_file: .codespellignore

0 comments on commit 2315985

Please sign in to comment.