Remove ODWReachability and iOS 11 macOS 10.14 code with EOL for those platforms #3166
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: spellcheck | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| continue-on-error: true | |
| - name: install misspell | |
| run: | | |
| curl -L -o ./install-misspell.sh https://git.io/misspell | |
| sh ./install-misspell.sh | |
| - name: run misspell | |
| run: | | |
| ./bin/misspell -error ./**/*.md | |
| ./bin/misspell -error ./**/*.txt | |
| ./bin/misspell -error ./examples/**/* | |
| find . -type f -wholename './lib/*.*' | grep -v json\\.hpp | xargs ./bin/misspell -error | |
| ./bin/misspell -error ./tests/**/* |