Merge pull request #19 from isabelroses:feat/go #3
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: Typo Checker | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "*.md" | |
jobs: | |
spellcheck: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for typos | |
uses: crate-ci/typos@master | |
id: typos | |
continue-on-error: true | |
- name: Fail when typos are found | |
if: ${{ steps.typos.outcome != 'success' }} | |
run: "exit 1" |