Installing with Homebrew and Testing
Since the GoReleaser job ran successfully, we should be able to install the CLI application with Homebrew. Let’s begin by telling Homebrew to tap the repository we’ve created for the formula:
brew tap marianina8/audiofile
You should see the following output generated from the previous command:
==> Tapping marianina8/audiofile Cloning into '/opt/homebrew/Library/Taps/marianina8/homebrew-audiofile'... remote: Enumerating objects: 6, done. remote: Counting objects: 100% (6/6), done. remote: Compressing objects: 100% (4/4), done. remote: Total 6 (delta 0), reused 3 (delta 0), pack-reused 0 Receiving objects: 100% (6/6), done. Tapped 1 formula (13 files, 6.3KB).
As we know, tapping the repository adds to the list of Homebrew formulas to install. Next, let’s try installing the audiofile CLI:
brew install marianina8/audiofile/audiofile
You should see the following output generated for the installation...