feat: add audio and animation system #20
Workflow file for this run
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: GDScript Static checks | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: "Lint" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup gdtoolkit | |
uses: Scony/godot-gdscript-toolkit@master | |
- name: Lint | |
run: gdlint scripts/ | |
formatting: | |
runs-on: ubuntu-latest | |
name: "Formatting" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup gdtoolkit | |
uses: Scony/godot-gdscript-toolkit@master | |
- name: Check formatting | |
run: gdformat --check scripts/ |