Gitlab Pipelines Tutorial: Automatically run Godot Unit tests on git push :)

Опубликовано: 11 Июль 2026
на канале: Kyle Luce
1,148
31

Hi Fellow Devs,

This is Tutorial about setting up automatic running of Godot Unit tests in your Gitlab repo.
The tests shown are just super simple to get you started. The main focus is setting up the automation.

In this video I'll show how to:

Create a basic unit test
Show how to automatically run all your tests run for EVERY git commit :)
Show basic work flow on how you can check to see if your team's PRs (merge requests) are breaking any tests and make them fix the PR before merging!

Tools used:

Gdscript
Godot: 3.1.1
GUT Godot Unit test Framework: 6.8.0
https://github.com/bitwes/Gut


Gitlab CI code example:
https://gist.github.com/Razzlegames/c...


Example Unit test:
https://gist.github.com/Razzlegames/8...