Files
YeetGeese/.gitea/workflows/test.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
563 B
YAML

name: Run Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Godot CLI
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