Skip to content

Commit

Permalink
Add spellcheck action
Browse files Browse the repository at this point in the history
  • Loading branch information
lewellien committed Jul 21, 2024
1 parent cbad974 commit 16216ac
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Spellcheck Action

# When should this action be run?
on: push

jobs:
build:
# Name of this job
name: Spellcheck
# Which container / platform to run on?
runs-on: ubuntu-latest
# The different steps in this job
steps:
# These can either be direct commands or use existing actions
# https://github.com/actions/checkout/tree/v3/
- uses: actions/checkout@v3
# https://github.com/rojopolis/spellcheck-github-actions/tree/v0/
- uses: rojopolis/spellcheck-github-actions@v0
name: Spellcheck

6 changes: 6 additions & 0 deletions .spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
spellchecker: aspell
matrix:
- name: Text Files
sources:
- "**/*.txt"
- "**/*.md"

0 comments on commit 16216ac

Please sign in to comment.