mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
21 lines
No EOL
428 B
Makefile
21 lines
No EOL
428 B
Makefile
fmt:
|
|
gofumpt -l -w .
|
|
gofmt -s -w .
|
|
gci write -s "standard,prefix(github.com/sagernet/),default" .
|
|
|
|
lint_install:
|
|
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
|
|
|
|
lint:
|
|
GOOS=linux golangci-lint run ./...
|
|
GOOS=windows golangci-lint run ./...
|
|
GOOS=darwin golangci-lint run ./...
|
|
GOOS=freebsd golangci-lint run ./...
|
|
|
|
test:
|
|
go test -v .
|
|
|
|
update:
|
|
git fetch
|
|
git reset FETCH_HEAD --hard
|
|
git clean -fdx
|