DEBSOURCES
Skip Quicknav
sources / golang-github-coreos-vcontext / 0.0~git20210903.c22998b-2 / test
123456789101112
#!/bin/bash set -e export GO111MODULE=on echo "checking gofmt" res=$(gofmt -d .) echo "$res" test -z "$res" echo "running tests" go test ./... -cover