github.com/golazy/golazy@v0.0.7-0.20221012133820-968fe65a0b65/lazyview/Makefile (about)

     1  
     2  
     3  tidy:
     4  	go mod tidy
     5  
     6  test:
     7  	go test ./...
     8  
     9  release: tag push
    10  
    11  tag:
    12  ifndef VERSION
    13  	$(error VERSION is not set)
    14  endif
    15  	git tag ${VERSION}
    16  
    17  push:
    18  ifndef VERSION
    19  	$(error VERSION is not set)
    20  endif
    21  	git push origin ${VERSION}