yq/precheckin.sh

18 lines
217 B
Bash
Raw Normal View History

2015-09-28 03:26:02 +00:00
#!/bin/bash
gofmt -w .
golint
go test
go build
2015-09-28 03:26:02 +00:00
# acceptance test
X=$(./yaml w sample.yaml b.c 3 | ./yaml r - b.c)
2015-09-28 03:26:02 +00:00
if [ $X != 3 ]
2015-09-28 03:26:02 +00:00
then
echo "Failed acceptance test: expected 2 but was $X"
2015-09-29 01:05:20 +00:00
exit 1
2015-09-28 03:26:02 +00:00
fi
2015-09-29 01:05:20 +00:00
go install