greet is a simple Go program that greets a recipient, or the world.
|
||
---|---|---|
.forgejo/workflows | ||
internal/build | ||
.gitignore | ||
.golangci.yaml | ||
go.mod | ||
go.sum | ||
greet.go | ||
greet_test.go | ||
LICENSE | ||
README.asciidoc |
Greetings
Summary
Greet is a simple Go CLI application that greets a recipient. This is a simple project used for the purpose of testing upcoming automation, such as CI/CD integration and dependency management, which will be used by other projects hosted in Code Flow.
Project’s Avatar
The project’s avatar was made by Smashicons from Flaticon.
Requirements
Build
$ go build -o greet .
Run
Greet the world.
$ ./greet
Greet a person.
$ ./greet Bob
Run Dagger Pipeline locally
$ pushd internal/build && go run . && popd