This repository was archived by the owner on Dec 25, 2024. It is now read-only.
Note move on README #178
Workflow file for this run
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
| # Credits to https://www.swild.dev/self-hosting/github-spellcheck-lint-action/ | |
| # for a starting point | |
| name: Spellcheck | |
| on: push | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Spellcheck | |
| uses: rojopolis/spellcheck-github-actions@0.45.0 | |
| with: | |
| config_path: config/.spellcheck.yml | |
| - uses: nosborn/github-action-markdown-cli@v3.3.0 | |
| with: | |
| files: . | |
| config_file: config/.markdownlint.yml |