bingobot/.gitlab-ci.yml
Ava Affine 0dae469cce put docbuf into an external pkg
Signed-off-by: Ava Affine <ava@sunnypup.io>
2024-12-05 17:06:54 -08:00

29 lines
387 B
YAML

image: golang:latest
stages:
- build
- test
compile:
stage: build
script:
- go build -o bingobot
artifacts:
paths:
- bingobot
- start.sh
tests-state-pkg:
stage: test
script:
- go test ./internal/state
tests-config-pkg:
stage: test
script:
- go test ./internal/config
tests-docbuf-pkg:
stage: test
script:
- go test ./pkg/docbuf