Updating gitea workers and adding gdunit4 and fake test.
Run Tests / test (push) Failing after 12s
Validate Project / validate (push) Failing after 12s

This commit is contained in:
2026-08-27 15:23:24 -07:00
parent e68f126f32
commit 02c1a540f9
510 changed files with 30603 additions and 31 deletions
+7 -6
View File
@@ -1,14 +1,15 @@
name: Run Tests
on: [push]
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Godot CLI
- name: Install Godot stable
run: |
wget -q https://github.com/godotengine/godot/releases/download/4.3-stable/Godot_v4.3-stable_linux.x86_64.zip
unzip -qq *.zip -d /tmp/ && sudo cp "/tmp/Godot v4.3 stable/Godot_v4.3-stable_linux.x86_64" /usr/local/bin/godot && chmod +x /usr/local/bin/godot
- name: Run headless tests
run: |
godot --headless --script res://tests/run_tests.gd --quit-after-tests
unzip -qq *.zip -d /tmp/godot-install/
sudo cp "/tmp/godot-install/Godot v4.3-stable/Godot_v4.3-stable_linux.x86_64" /usr/local/bin/godot
chmod +x /usr/local/bin/godot
- name: Run headless gdunit4 tests
run: godot --headless --path . --script res://tests/run_tests.gd