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