Skip to content
Snippets Groups Projects
.gitlab-ci.yml 191 B
Newer Older
  • Learn to ignore specific revisions
  • godog's avatar
    godog committed
    stages:
      - test
    
    run_tests:
      stage: test
      image: "debian:buster"
      script:
        - "apt update"
        - "env DEBIAN_FRONTEND=noninteractive apt -y install golang git"
        - "go test -v ./..."