github.com/octohelm/storage@v0.0.0-20240516030302-1ac2cc1ea347/Makefile (about)

     1  tidy: gen fmt
     2  	go mod tidy
     3  
     4  test:
     5  	CGO_ENABLED=0 go test -failfast -v ./...
     6  
     7  test.race:
     8  	CGO_ENABLED=1 go test -v -race ./...
     9  
    10  fmt:
    11  	goimports -l -w .
    12  
    13  dep:
    14  	go get -u ./...
    15  
    16  gen:
    17  	go run ./internal/cmd/gen
    18  
    19  serve.dbs:
    20  	cd hack && docker compose up -d