github.com/awslabs/clencli@v0.0.0-20210514234156-7ecf17182a20/lib/make/github/Makefile (about) 1 2 .PHONY: github/build 3 github/build: ## Builds the app on Github 4 mkdir bin/ && go build -o bin/clencli 5 6 # GitHub actions doesn't allow egress internet connectivity 7 # Therefore integration tests that needs to download/pull data from the internet can't be executed 8 .PHONY: github/test 9 github/test: 10 @cd tests && go test pkg_test.go cmd_root_test.go cmd_init_test.go cmd_render_test.go cmd_version_test.go 11 12 .PHONY: go/test 13 go/test: 14 @cd tests && go test -v