pkg
is the monorepo for common Go modules maintained by Defense Unicorns.
Follow the steps in CONTRIBUTING.md to contribute to this project.
View the Makefile
for available commands.
# Run all formatters
make fmt
# Run all linters
make lint
# Run all tests
make test
To run any of the above commands against an individual module, append -<module name>
to the command.
# Run all formatters for the helpers module
make fmt-helpers
# Run all linters for the helpers module
make lint-helpers
# Run all tests for the helpers module
make test-helpers