Merge pull request #669 from moetiker/patch-8 #36153
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: Spell checking | ||
on: | ||
push: | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '15 * * * *' | ||
jobs: | ||
build: | ||
name: Spell checking | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
extra_dictionaries: | ||
cspell:software-terms/dict/softwareTerms.txt | ||
cspell:filetypes/filetypes.txt | ||
# Languages below are not used in this project, but common terms are | ||
cspell:php/dict/php.txt | ||
cspell:node/dict/node.txt | ||
cspell:python/src/python/python-lib.txt | ||
- uses: check-spelling/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
bucket: .github/workflows/ | ||
project: spelling |