diff --git a/README.md b/README.md index 6973ec8..2ee9854 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # go-simple-server Just setting up to check git tools setup and working + +Added github actions for docker build, testing with new branch. diff --git a/server.go b/server.go index 689c2cb..2c45c7d 100644 --- a/server.go +++ b/server.go @@ -6,7 +6,7 @@ import ( ) func helloWorld(w http.ResponseWriter, r *http.Request){ - fmt.Fprintf(w, "Hello World") + fmt.Fprintf(w, "Hello, World!") } func main() {