Supported .ocd versions, hint on 'Cutout' usage #74
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: CI | |
| on: | |
| push: | |
| branches: [ gh-pages ] | |
| pull_request: | |
| branches: [ gh-pages ] | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| # https://facelessuser.github.io/pyspelling/#usage-in-ci | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Install pyspelling | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| python -m pip install pyspelling | |
| # Install any additional libraries required: additional plugins, documentation building libraries, etc. | |
| - name: Install hunspell | |
| run: | | |
| sudo apt-get install hunspell hunspell-en-us | |
| - name: Spell check | |
| run: | | |
| python -m pyspelling --spellchecker hunspell |