Adds `go vet` to the test procedures in both the local `Taskfile.yml` and the GitHub Actions workflow. Also includes the following changes: - Refactors the `trix` CLI to use the `cobra` library to improve testability. - Adds comprehensive tests for the `trix` CLI, achieving 100% test coverage. - Fixes a closure bug in the sigil command creation loop. - Refactors the CLI to use Cobra's I/O writers, making the output testable.
18 lines
441 B
Modula-2
18 lines
441 B
Modula-2
module github.com/Snider/Enchantrix
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/spf13/cobra v1.10.1
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/crypto v0.43.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spf13/pflag v1.0.9 // indirect
|
|
golang.org/x/sys v0.37.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|