yq/precheckin.sh

14 lines
175 B
Bash
Raw Normal View History

2015-09-28 03:26:02 +00:00
#!/bin/bash
gofmt -w .
golint
go test
2015-09-28 03:26:02 +00:00
# acceptance test
X=$(go run yaml.go sample.yaml b.c)
if [ $X != 2 ]
then
echo "Failed acceptance test: expected 2 but was $X"
fi