This repository was archived by the owner on Feb 1, 2025. It is now read-only.
begin forehand anim #11
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: Godot Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' # specify your preferred Python version | |
- name: Install gdtoolkit | |
run: | | |
pip install gdtoolkit | |
# - name: Lint GDScript | |
# run: | | |
# gdlint . | |
- name: Format Check GDScript | |
run: | | |
gdformat scripts/ | |
continue-on-error: true |