Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

begin forehand anim #11

begin forehand anim

begin forehand anim #11

Workflow file for this run

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