Added an OKHSL Lightness sorting in palette #2747
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: Static Checks 📊 | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
- l10n_master | |
pull_request: | |
paths: | |
- "addons/**" | |
- "src/**" | |
concurrency: | |
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static | |
cancel-in-progress: true | |
jobs: | |
static-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 | |
exclude_file: src/UI/Dialogs/AboutDialog.gd | |
ignore_words_list: chello,doubleclick,Manuel, SectionIn |