diff --git a/flutter/flutter-test.gitlab-ci.yml b/flutter/flutter-test.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ceb4db892ad391f7d2f753368b7778a0ecfef693
--- /dev/null
+++ b/flutter/flutter-test.gitlab-ci.yml
@@ -0,0 +1,15 @@
+stages:
+- test
+
+variables:
+  FLUTTER_TEST_IMAGE: andrijoos/flutter:3-linux
+  APP_DIRECTORY: "."
+
+.run_tests:
+  stage: test
+  image: ${FLUTTER_TEST_IMAGE}
+  tags:
+  - amd64
+  script:
+  - cd ${APP_DIRECTORY}
+  - flutter test ${TEST_ARGS}