Merge pull request #887 from coderefinery/BYOC #1122
This file contains hidden or 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: Spelling Errors Check | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- 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 |