Making our CI/CD Pipeline
Config File
image: golang:1.22
stages:
- test
- build
build:
stage: build
script:
- "go build -o calculator"
- "./calculator"
test:
stage: test
script:
- "go test"Viewing our deployed pipeline


Testing for Failures




Last updated