Skip to content
Snippets Groups Projects
.gitlab-ci.yml 293 B
Newer Older
  • Learn to ignore specific revisions
  • stages:
      - test
    
    run_tests:
      stage: test
      image: registry.git.autistici.org/ai3/docker/test/golang:master
      script:
        - run-go-test ./...
      artifacts:
        when: always
        reports:
    
    ale's avatar
    ale committed
          coverage_report:
            coverage_format: cobertura
            path: cover.xml
    
          junit: report.xml