File: go-test

package info (click to toggle)
gitlab-shell 8.4.3%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,468 kB
  • sloc: ruby: 3,812; sh: 82; makefile: 60
file content (12 lines) | stat: -rwxr-xr-x 168 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ruby

require_relative 'go_build'
include GoBuild

def main
  create_fresh_build_dir
  run!(GO_ENV, %W[go test #{GO_PACKAGE}/...])
  puts 'OK'
end

main