Bump dependencies

This commit is contained in:
Joshua Casey
2023-05-30 09:16:53 -05:00
parent 749a208773
commit 6bd34fa6ea
3 changed files with 15 additions and 15 deletions

View File

@@ -17,21 +17,11 @@ function lint_cmd() {
}
function test_cmd() {
if [ -x "$(command -v gotest)" ]; then
cmd='gotest'
else
cmd='go test'
fi
echo "${cmd} -count 1 -race ./..."
echo "go test -count 1 -race ./..."
}
function unittest_cmd() {
if [ -x "$(command -v gotest)" ]; then
cmd='gotest'
else
cmd='go test'
fi
echo "${cmd} -short -race ./..."
echo "go test -short -race ./..."
}
function with_modules() {