diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6d374db --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# bin +shout + +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Code coverage profiles and other test artifacts +*.out +coverage.* +*.coverprofile +profile.cov + +# Go workspace file +go.work +go.work.sum + +# env file +.env + +# Editor/IDE +# .vscode/ diff --git a/Makefile b/Makefile index d406517..8eec896 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ unit: go test ./... integration: build - ./shout test test/ + ./shout test clean: rm -f shout diff --git a/shout b/shout deleted file mode 100755 index 8aa9845..0000000 Binary files a/shout and /dev/null differ