9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
source "$ROOT/scripts/env.sh"
|
|
|
|
echo "Running focused tests (./cmd/... ./internal/...)"
|
|
go test ./cmd/... ./internal/...
|