From 26ac0f69a51ad94e3607b75976c8ffbbaeb418c5 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Mon, 21 Apr 2025 12:08:20 -0400 Subject: [PATCH] KELAN, WE WENT OVER THIS. EXPANDTAB. --- .gitlab-ci.yml | 5 +++++ .gitlab/tests.yml | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 .gitlab/tests.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ff6b0db --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,5 @@ +stages: + - Tests + +include: + - '.gitlab/tests.yml' \ No newline at end of file diff --git a/.gitlab/tests.yml b/.gitlab/tests.yml new file mode 100644 index 0000000..2327de5 --- /dev/null +++ b/.gitlab/tests.yml @@ -0,0 +1,8 @@ +Golang Tests: + stage: Tests + image: siteworxpro/golang:1.24 + script: + - echo "Running Go tests..." + - cd backend + - go mod download + - go test -v ./... -coverprofile=coverage.out