Skip to content
Snippets Groups Projects
.gitlab-ci.yml 336 B
Newer Older
ale's avatar
ale committed
include: "https://git.autistici.org/ai3/build-container/raw/master/common.yml"

stages:
  - test
  - build
  - release

run_tests:
  stage: test
  image: registry.git.autistici.org/ai3/docker/test/golang:master
  script:
    - run-go-test .
  artifacts:
    when: always
    reports:
      cobertura: cover.xml
      junit: report.xml