mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
cd4e9ef9bd
gdtoolkit got updated to Godot 4.x, so we need to explicitly state that we are installing the Godot 3.x version.
34 lines
734 B
YAML
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
|