BREAKING: update mautrix to 0.15.x
This commit is contained in:
26
vendor/gitlab.com/etke.cc/linkpearl/justfile
generated
vendored
Normal file
26
vendor/gitlab.com/etke.cc/linkpearl/justfile
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# show help by default
|
||||
default:
|
||||
@just --list --justfile {{ justfile() }}
|
||||
|
||||
# update go deps
|
||||
update:
|
||||
go get .
|
||||
go get -u maunium.net/go/mautrix
|
||||
go mod tidy
|
||||
|
||||
# run linter
|
||||
lint:
|
||||
golangci-lint run ./...
|
||||
|
||||
# automatically fix liter issues
|
||||
lintfix:
|
||||
golangci-lint run --fix ./...
|
||||
|
||||
vuln:
|
||||
govulncheck ./...
|
||||
|
||||
# run unit tests
|
||||
test:
|
||||
@go test ${BUILDFLAGS} -coverprofile=cover.out ./...
|
||||
@go tool cover -func=cover.out
|
||||
-@rm -f cover.out
|
||||
Reference in New Issue
Block a user