7 lines
61 B
Bash
7 lines
61 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -eEuo pipefail
|
||
|
|
|
||
|
|
go test ./... "$@"
|
||
|
|
|