Skip to content
Snippets Groups Projects
.gitlab-ci.yml 360 B
image: golang:1.16

test:
  stage: test
  script:
  - go test ./...

build:
  stage: build
  script:
  - GOOS=freebsd go build -o invinoveritas
  artifacts:
    paths:
    - invinoveritas

deploy:
  stage: deploy
  image: ubuntu:latest
  script:
  - ls -l

stages:
- test
- build
- deploy

sast:
  stage: test

include:
- template: Security/SAST.gitlab-ci.yml