chore(deps): update dependency godot.net.sdk to 4.4.0-rc.3 (#102) #250
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: "🧑🏫 Spellcheck" | |
on: | |
push: | |
pull_request: | |
jobs: | |
# We previously used the cspell action, but it didn't seem to properly respect | |
# the cspell.json file. | |
spellcheck: | |
name: "🧑🏫 Spellcheck" | |
# Prevents duplicate workflows from running on PR's that originate from the | |
# repository itself. | |
if: > | |
github.event_name != 'pull_request' || | |
github.event.pull_request.head.repo.full_name != | |
github.event.pull_request.base.repo.full_name | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "." | |
steps: | |
- uses: actions/checkout@v4 | |
name: 🧾 Checkout | |
- uses: streetsidesoftware/cspell-action@v6 | |
name: 📝 Check Spelling | |
with: | |
config: "./cspell.json" | |
incremental_files_only: false | |
root: "." |