Initial checkin
GDScript Lint / lint (push) Failing after 13s
Run Tests / test (push) Failing after 12s

This commit is contained in:
2026-08-27 12:44:09 -07:00
commit e68f126f32
8 changed files with 130 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
name: Verify Export Config
on: workflow_dispatch
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download export templates (cached)
run: |
mkdir -p .godot/export_templates
wget -qO- https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_export_templates.tpz \
| tar xzf - -C .godot/export_templates --strip-components=1
- name: Validate project compiles cleanly
run: godot --headless --quit-after-editor-checks 2>&1 | tee editor.log