From fe80bfc2feb745265cffadca86cc26d62735d0a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Kl=C3=A9ger?= Date: Tue, 7 Oct 2025 14:44:05 +0200 Subject: [PATCH] ci: Add CI/CD script --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8ba8b5e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: ${CI_REGISTRY}/ict/images/alpine/ci:latest + +before_script: + apk add build-base bash + +validate_code: + stage: test + script: + - chmod +x ./test/main.sh + - ./test/main.sh