This is a Go version of the popular Danger tool.
go install github.com/luno/danger-go/cmd/danger-go@latest
yarn global add danger
Requires Danger JS to run properly.
- Create a new directory to house the dangerfile.go file. This repo uses
build/ci
. - Add a
dangerfile.go
to the directory with the following contents:
package main
import "github.com/luno/danger-go"
func Run(d *danger.T, pr danger.DSL) {
d.Message("danger-go is running!", "", 0)
}
- Run the following in the directory:
go mod init dangerfile
go get github.com/luno/danger-go
go mod tidy
The danger-go
command line tool supports local
, pr
, and ci
commands. danger-go
wraps the corresponding danger
(js) commands, so to get information about flags, run danger <command> --help
.
See .github/workflows/main.yml
as a reference.