Update dependencies

This commit is contained in:
世界 2023-02-20 14:14:41 +08:00
parent e3123545f2
commit 31e4666f1e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 78 additions and 22 deletions

View file

@ -1,16 +1,15 @@
.PHONY: test
fmt:
@gofumpt -l -w .
@gofmt -s -w .
@gci write -s "standard,prefix(github.com/sagernet/),default" .
@gci write --custom-order -s "standard,prefix(github.com/sagernet/),default" .
fmt_install:
go install -v mvdan.cc/gofumpt@latest
go install -v github.com/daixiang0/gci@v0.4.0
go install -v github.com/daixiang0/gci@latest
lint:
GOOS=linux golangci-lint run ./...
GOOS=android golangci-lint run ./...
GOOS=windows golangci-lint run ./...
GOOS=darwin golangci-lint run ./...
GOOS=freebsd golangci-lint run ./...
@ -19,7 +18,4 @@ lint_install:
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
test:
@go test -v . && \
pushd test && \
go test -v . && \
popd
go test -v ./...