Files
YeetGeese/.gitea/workflows/export-check.yml
T
letteka e68f126f32
GDScript Lint / lint (push) Failing after 13s
Run Tests / test (push) Failing after 12s
Initial checkin
2026-08-27 12:44:09 -07:00

15 lines
569 B
YAML

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