Add pandasoli/nekovim
#1407
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: Typos and Terminology Check | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
typos-check: | |
name: Check for typos | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: crate-ci/typos@b1a1ef3893ff35ade0cfa71523852a49bfd05d19 | |
with: | |
files: ./README.md | |
config: ./.github/typos.toml | |
terminology-check: | |
name: Check for terminology consistency | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Run terminology check script | |
run: ./.github/scripts/check-terms.sh README.md |