Skip to content

Commit

Permalink
'slightly modify' pixelorama's static checks
Browse files Browse the repository at this point in the history
  • Loading branch information
meoowe authored Dec 12, 2024
1 parent 460143a commit 56ea025
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Static Checks 📊
on:
push:
branches-ignore:
- gh-pages
- korGE-legacy
- dev

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

0 comments on commit 56ea025

Please sign in to comment.