mirror of
https://github.com/fabriziosalmi/caddy-waf.git
synced 2025-12-23 22:27:46 -05:00
27 lines
360 B
Makefile
27 lines
360 B
Makefile
tidy:
|
|
@go mod tidy
|
|
@echo "Done!"
|
|
|
|
upd:
|
|
@go get -u ./...
|
|
@echo "Done!"
|
|
|
|
fmt:
|
|
@go fmt ./...
|
|
|
|
test:
|
|
@go test -v ./...
|
|
@echo "Done!"
|
|
|
|
it:
|
|
@go test -v ./... -tags=it
|
|
@echo "Done!"
|
|
|
|
lint:
|
|
@echo "==> Checking source code with golangci-lint..."
|
|
@golangci-lint run
|
|
|
|
lintfix:
|
|
@echo "==> Checking source code with golangci-lint..."
|
|
@golangci-lint run --fix
|