.PHONY all: all: go build -o build/scrapper && chmod +x build/scrapper .PHONY clean: clean: rm -rfv build/* .PHONY lint: lint: golangci-lint run .