feat(gitlab-sim): first commit

This commit is contained in:
2026-06-05 01:29:07 +02:00
commit e2334ec12d
21 changed files with 1778 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
stages:
- build
- test
- deploy
variables:
APP_ENV: production
build-job:
stage: build
script:
- echo "Building..."
- go build ./...
test-job:
stage: test
script:
- go test ./...
deploy-job:
stage: deploy
script:
- echo "Deploying to $APP_ENV"
rules:
- if: '$CI_COMMIT_BRANCH == "main"'
when: on_success