mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 07:08:06 +00:00
14 lines
175 B
Bash
Executable File
14 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gofmt -w .
|
|
golint
|
|
go test
|
|
|
|
# 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
|