From 625ffff6502d02fe62992e27969147faf0209c9c Mon Sep 17 00:00:00 2001 From: Vadim Glukhikh Date: Thu, 11 Sep 2025 16:54:27 +0100 Subject: [PATCH] ci: add hello world pipeline --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000..5047714d23 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,7 @@ +stages: + - build + +hello_world: + stage: build + script: + - echo "Hello, World!"