6 lines
106 B
Bash
6 lines
106 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
source scripts/go-env.sh
|
||
|
|
go test ./... "$@"
|