better section title #277
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: Spelling Erros Check | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- 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 * |