github.com/shved/got@v0.0.0-20230322140632-a4bfa1e99685/Makefile (about)

     1  build:
     2  	go build -o build/got
     3  lint:
     4  	go fmt ./...
     5  test:
     6  	go test main_test.go
     7  clean:
     8  	rm -rf test/dummy_app/*
     9  
    10  .PHONY: build lint test clean
    11