Update pinned-requirements.txt #22
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 check | |
on: | |
- push | |
- pull_request | |
jobs: | |
spellcheck: | |
name: Spelling check (documentation) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Aspell | |
run: | | |
sudo apt-get install aspell aspell-en | |
- name: Install the doc framework | |
run: | | |
make install | |
- name: Build docs and run spelling checker | |
run: | | |
make spelling |