fixup fr24 signup instructions #397
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: Check Spelling | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull pipelinecomponents/markdown-spellcheck Image | |
run: docker pull pipelinecomponents/markdown-spellcheck | |
- name: Spellcheck Markdown Files | |
run: docker run --rm -i -v "$PWD:/github/workspace" --workdir /github/workspace -e FORCE_COLOR=1 pipelinecomponents/markdown-spellcheck --report "**/*.md" -n -a | |
# spelling: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Set up Python | |
# uses: actions/setup-python@v1 | |
# with: | |
# python-version: 3.9 | |
# - name: Install dependencies | |
# run: | | |
# python3 -m pip install --upgrade pip setuptools | |
# - name: Install Aspell | |
# run: sudo apt-get install -y aspell aspell-en | |
# - name: Install pyspelling | |
# run: | | |
# git clone https://github.com/facelessuser/pyspelling.git /tmp/pyspelling | |
# pushd /tmp/pyspelling || exit 1 | |
# git checkout $(git tag --sort='-creatordate' | head -1) | |
# python3 ./setup.py install | |
# popd || exit 1 | |
# - name: Spell check | |
# run: pyspelling |