Mono Repository Tooling
In our multi-module Go repository, we use tools like:
- DevBox
- Just
- Matrix CI pattern
Open DevBox shell:
devbox shell
Install pre-commit hooks first:
just install
Testing
Each package has tests, run using commands in the justfile, examples:
# run all the tests (cache)
just test-all
# run package tests with regex
just test wasp TestSmoke
# run all package tests
just test tools/ghlatestreleasechecker ./...
Linting
Use linters:
# all packages
just lint-all
# one package
just lint wasp
Updating dev deps (DevBox)
For extra dependencies, we use NixHub to add them to DevBox, which also works in CI.
Don't forget to update the lockfile after adding new deps and commit the changes:
devbox update
Updating Docs (MDBook)
just book