Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/godot-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Godot Checks 📊
on:
push:
branches-ignore:
- gh-pages
pull_request:
paths:
- "addons/**"
- "scripts/**"

concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
cancel-in-progress: true

# global permissions
permissions: {}

jobs:
godot-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: Scony/godot-gdscript-toolkit@master
- name: Formatting checks
run: gdformat --diff .
- name: Linting checks
run: gdlint .
- name: Spell checks via codespell
uses: codespell-project/actions-codespell@v2
with:
skip: ./addons,*.po
ignore_words_list: chello,doubleclick,Manuel, SectionIn
Copy link

Copilot AI Jan 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent spacing in the ignore_words_list. There's a space after 'Manuel,' but no spaces after other commas. For consistency, remove the space: 'chello,doubleclick,Manuel,SectionIn'.

Suggested change
ignore_words_list: chello,doubleclick,Manuel, SectionIn
ignore_words_list: chello,doubleclick,Manuel,SectionIn

Copilot uses AI. Check for mistakes.
Loading