mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
12 lines
154 B
Bash
Executable File
12 lines
154 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
run_tests() {
|
|
golangci-lint run ./...
|
|
$GOPATH/bin/goveralls -service=travis-ci
|
|
SKIP_GO_TESTS=1 ./tests.sh
|
|
}
|
|
|
|
run_tests
|