6 lines
81 B
Bash
Executable File
6 lines
81 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
go test -race ./...
|
|
( cd pkg/client && go test -race ./... )
|