chore: review, adding unit tests and improving naming and code comments #2317
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: spellcheck-woke | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
# Check code for non-inclusive language | |
woke: | |
name: Run woke | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: woke | |
uses: get-woke/woke-action@v0 | |
with: | |
# Cause the check to fail on any broke rules | |
fail-on-error: true | |
# Enforce en-us spell check | |
spellcheck: | |
name: Run spellcheck | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Spellcheck | |
uses: rojopolis/[email protected] |