Add index on foreign key column if parent exists to speed up queries … #264
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: | |
| paths: | |
| - '**.asciidoc' | |
| - '**.md' | |
| - '**.dict' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: spellcheck checkout | |
| uses: actions/checkout@v2 | |
| - name: download dictionary | |
| run: | | |
| wget https://raw.githubusercontent.com/devonfw/.github/master/en-devonfw.dict -O ./en-devonfw.dict | |
| - uses: igsekor/pyspelling-any@v0.0.2 | |
| name: Spellcheck |