- Hello World level
- with simple test case example
- integrate with CI/CD
- PR testing automation
# how to run
$ git clone https://github.com/yiidtw/hello-web-in-go
$ cd hello-web-in-go
$ go build
$ ./hello-web-in-go &
# open browser or curl the get the result
$ curl localhost:5000
Hello Web
# how to test
$ go test
PASS
ok hello-web-in-go 0.006s