Removing unit tests as it doesnt work.
Validate Project / validate (push) Successful in 15s
Validate Project / validate (pull_request) Successful in 15s

This commit is contained in:
2026-08-27 16:48:26 -07:00
parent 0a04e1d852
commit 3f72bd678c
507 changed files with 4 additions and 30564 deletions
-15
View File
@@ -1,15 +0,0 @@
name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Godot stable
run: |
wget -q https://github.com/godotengine/godot/releases/download/4.7.2-stable/Godot_v4.7.2-stable_linux.x86_64.zip
unzip -qq *.zip -d /tmp/godot-install/
GODOT_BIN=$(find /tmp/godot-install/ -type f -name "Godot_*linux.x86_64" | head -1)
sudo cp "$GODOT_BIN" /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