greet is a simple Go program that greets a recipient, or the world.
Go to file
Dan Anglin 45a531d1c1
All checks were successful
/ test (pull_request) Successful in 20s
/ lint (pull_request) Successful in 24s
ci: update forgejo actions workflow
- update actions/checkout to v4
- update actions/setup-go to v5
2023-12-14 09:28:24 +00:00
.forgejo/workflows ci: update forgejo actions workflow 2023-12-14 09:28:24 +00:00
internal/build ci(dagger): use the new Sync function 2023-08-28 16:44:06 +01:00
.gitignore feat: add greet program and tests 2021-08-29 15:36:09 +01:00
.golangci.yaml ci: replace Woodpecker with Forgejo Actions 2023-08-28 14:39:18 +01:00
go.mod chore: update go.mod 2023-12-02 23:46:34 +00:00
go.sum ci: add CI pipelines 2023-05-13 23:06:25 +01:00
greet.go ci: add CI pipelines 2023-05-13 23:06:25 +01:00
greet_test.go refactor: add support for mage and golangci-lint 2021-09-19 05:57:46 +01:00
LICENSE ci: add CI pipelines 2023-05-13 23:06:25 +01:00
README.asciidoc doc: rewrite README with asciidoc 2023-05-22 07:52:28 +01:00

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.

Projects Avatar

The projects 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