Skip to content

Instantly share code, notes, and snippets.

@sh-cho
Created June 11, 2022 17:11
Show Gist options
  • Save sh-cho/42878fe612088fbcb5e78a5418db275b to your computer and use it in GitHub Desktop.
Save sh-cho/42878fe612088fbcb5e78a5418db275b to your computer and use it in GitHub Desktop.
gdscript lint workflow using gdtoolkit
name: lint
on:
pull_request:
push:
branches-ignore:
- gh-pages
jobs:
gdlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements
run: |
pip install --upgrade pip setuptools wheel
pip install 'gdtoolkit==3.*'
- name: Run gdlint
run : gdlint .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment