Blog post asking for someone to host the streaming training workshop #969
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 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 |