mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-04 08:25:26 +08:00
11 lines
204 B
Bash
Executable File
11 lines
204 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
export GOCACHE="${GOCACHE:-${ROOT_DIR}/.tmp/go-build-cache}"
|
|
mkdir -p "$GOCACHE"
|
|
|
|
go test ./... "$@"
|