Wiki update for 10380 (display names for planets and systems) #16
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
spellcheck: | |
name: Spelling | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
show-progress: false | |
- uses: codespell-project/actions-codespell@master | |
with: | |
builtin: clear,en-GB_to_en-US | |
path: wiki/ | |
exclude_file: .codespell.exclude | |
ignore_words_file: .codespell.words.exclude |