mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
56c923228d
Added more tests to avoid bugs ;)
18 lines
217 B
Bash
Executable File
18 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gofmt -w .
|
|
golint
|
|
go test
|
|
go build
|
|
|
|
# acceptance test
|
|
X=$(./yaml w sample.yaml b.c 3 | ./yaml r - b.c)
|
|
|
|
if [ $X != 3 ]
|
|
then
|
|
echo "Failed acceptance test: expected 2 but was $X"
|
|
exit 1
|
|
fi
|
|
|
|
go install
|