Merge pull request #919 from coderefinery/upcoming #1215
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: Check spelling errors | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: curl -L https://git.io/misspell | bash | |
# This will return an exit code of 2, thus triggering a failed build | |
- name: Test spelling errors | |
shell: bash | |
run: | | |
bin/misspell -error content/*.md README.md templates/*.html |