|
|
il y a 5 ans | |
|---|---|---|
| .github | il y a 5 ans | |
| azure | il y a 5 ans | |
| backend | il y a 5 ans | |
| cli | il y a 5 ans | |
| client | il y a 5 ans | |
| compose | il y a 5 ans | |
| containers | il y a 5 ans | |
| context | il y a 5 ans | |
| docs | il y a 5 ans | |
| errdefs | il y a 5 ans | |
| example | il y a 5 ans | |
| moby | il y a 5 ans | |
| multierror | il y a 5 ans | |
| server | il y a 5 ans | |
| tests | il y a 5 ans | |
| .dockerignore | il y a 5 ans | |
| .gitignore | il y a 5 ans | |
| .golangci.yml | il y a 5 ans | |
| Dockerfile | il y a 5 ans | |
| Makefile | il y a 5 ans | |
| README.md | il y a 5 ans | |
| builder.Makefile | il y a 5 ans | |
| go.mod | il y a 5 ans | |
| go.sum | il y a 5 ans |
The recommended way is to use the main Makefile that runs everything inside a container.
If you don't have or want to use Docker for building you need to make sure you have all the needed tools installed locally:
go get github.com/golang/protobuf/[email protected]go get golang.org/x/tools/cmd/goimportsgo get github.com/golangci/golangci-lint/cmd/[email protected]And then you can call the same make targets but you need to pass it the builder.Makefile (make -f builder.Makefile).
$ make
If you make changes to the .proto files, make sure to make protos to generate go code.
To run unit tests:
make test
If you need to update a golden file simply do go test ./... -test.update-golden.