.PHONY: build test package build: go build -o hello-world main.go test: go test -v ./... package: zip hello-world.zip hello-world clean: rm -f hello-world hello-world.zip