Skip to content
Snippets Groups Projects
.gitlab-ci.yml 401 B
Newer Older
godog's avatar
godog committed
include: "https://git.autistici.org/pipelines/debian/raw/master/common.yml"

run_tests:
  stage: test
godog's avatar
godog committed
  image: registry.git.autistici.org/pipelines/images/test/golang:master
  script:
    - run-go-test ./...
ale's avatar
ale committed
  coverage: '/overall coverage: \d+.\d+%/'
  artifacts:
    when: always
    reports:
      coverage_report:
        coverage_format: cobertura
        path: cover.xml
      junit: report.xml