github.com/pierrre/golangci-lint@v1.10.1/Makefile (about)

     1  test:
     2  	go install ./cmd/...
     3  	GL_TEST_RUN=1 golangci-lint run -v
     4  	GL_TEST_RUN=1 golangci-lint run --fast --no-config -v
     5  	GL_TEST_RUN=1 golangci-lint run --no-config -v
     6  	GL_TEST_RUN=1 go test -v ./...
     7  
     8  test_linters:
     9  	GL_TEST_RUN=1 go test -v ./test -count 1 -run TestSourcesFromTestdataWithIssuesDir/$T
    10  
    11  assets:
    12  	svg-term --cast=183662 --out docs/demo.svg --window --width 110 --height 30 --from 2000 --to 20000 --profile Dracula --term iterm2
    13  
    14  readme:
    15  	go run ./scripts/gen_readme/main.go
    16  
    17  check_generated:
    18  	make readme && git diff --exit-code # check no changes
    19  
    20  release:
    21  	rm -rf dist
    22  	curl -sL https://git.io/goreleaser | bash
    23  
    24  .PHONY: test