mfridman / tparse

CLI tool for summarizing go test output. Pipe friendly. CI/CD friendly.
MIT License
998 stars 22 forks source link

Allow install via homebrew #114

Open ccoVeille opened 5 months ago

ccoVeille commented 5 months ago

Having an homebrew tap is a good way to make your tool available for people who don't have/want to build it via go install.

https://github.com/Homebrew/brew/blob/master/docs/How-to-Create-and-Maintain-a-Tap.md

Howbrew also helps people to get the last version of the tool. While go install is one shot thing.

I tend to install all my golang tool with homebrew, so I'm notified when they are updated.

You are already using goreleaser, you could configure an homebrew tap and update it via goreleaser

https://goreleaser.com/customization/homebrew/#homebrew-taps

mfridman commented 5 months ago

Not a bad idea.