From ca4a2f705136879a113bfb1c6a9a54e79514e8ef Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 11 Jan 2026 07:41:14 +0000 Subject: [PATCH] add demo .gitlab-ci.yaml file --- .gitlab-ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yaml diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml new file mode 100644 index 0000000..3227f39 --- /dev/null +++ b/.gitlab-ci.yaml @@ -0,0 +1,16 @@ +stages: + - build + - test + +variables: + APP_NAME: "demo-app" + +build: + stage: build + script: + - echo "Building $APP_NAME" + +test: + stage: test + script: + - echo "Testing $APP_NAME" \ No newline at end of file