mirror of
https://github.com/stretchr/testify.git
synced 2025-05-01 13:10:04 +00:00
11 lines
138 B
Bash
Executable File
11 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname $0)"
|
|
DIRS=". assert require mock _codegen"
|
|
set -e
|
|
for subdir in $DIRS; do
|
|
pushd $subdir
|
|
go vet
|
|
popd
|
|
done
|