1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 17:19:50 +00:00
Pixelorama/.github/workflows/static-checks.yml
Emmanouil Papadeas cd4e9ef9bd
Use Godot 3.x's gdtoolkit.
gdtoolkit got updated to Godot 4.x, so we need to explicitly state that we are installing the Godot 3.x version.
2023-03-07 16:24:59 +02:00

34 lines
734 B
YAML

name: Static Checks 📊
on:
push:
branches-ignore:
- gh-pages
- l10n_master
pull_request:
paths:
- "addons/**"
- "src/**"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip3 install "gdtoolkit==3.*"
- run: gdformat --diff .
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: pip3 install "gdtoolkit==3.*"
- run: gdlint .
codespell:
runs-on: ubuntu-latest
steps:
- uses: codespell-project/actions-codespell@v1
with:
skip: ./addons,*.po
check_hidden: false
ignore_words_list: cello,doubleclick
only_warn: true