Skip to content

Commit

Permalink
add spellcheck github action
Browse files Browse the repository at this point in the history
  • Loading branch information
burkfers committed Oct 18, 2023
1 parent edf6db7 commit f604a3f
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check_spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Spellcheck
on:
push:
branches: ["master"]
pull_request:
paths:
- '**.js'
- '**.txt'
- '**.html'
- '**.md'
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check Spelling
uses: rojopolis/spellcheck-github-actions@v0
with:
output_file: spellcheck-output.txt
- uses: actions/upload-artifact@v3
if: '!cancelled()' # Do not upload artifact if job was cancelled
with:
name: Spellcheck Output
path: spellcheck-output.txt
21 changes: 21 additions & 0 deletions .spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
matrix:
- name: Markdown
aspell:
lang: en
dictionary:
wordlists:
- .wordlist.txt
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- markdown.extensions.extra:
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
- pyspelling.filters.url:
sources:
- '**/*.md'
default_encoding: utf-8
55 changes: 55 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
nav
keymap
keymaps
TOC
RGB
UI
keycode
keycodes
pre
incrementing
Miryoku
Torx
OLED
OG
QMK
QMK's
trackpad
chamfer
chamfered
desolder
bstkbd
vias
FPC
permalink
bundler
BKB
BastardKB
pinout
ATmega
eg
ie
microcontroller
Adafruit
Blok
bootloader
ESD
Frood
GPIO
Kee
Keeb
Liatris
Picro
SparkFun
Vbus
splitkb
xB
xCB
Splinky
firmware
firmwares
LED
LEDs
PCB
PCBs
Nano

0 comments on commit f604a3f

Please sign in to comment.