mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 14:57:24 +02:00
11 lines
111 B
Bash
Executable File
11 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
run_tests() {
|
|
golangci-lint run ./...
|
|
SKIP_GO_TESTS=1 ./tests.sh
|
|
}
|
|
|
|
run_tests
|