update deps

This commit is contained in:
Aine
2023-12-19 12:48:50 +02:00
parent fe17195bc1
commit c19c87393c
441 changed files with 11883 additions and 7230 deletions

View File

@@ -3,9 +3,8 @@ default:
@just --list --justfile {{ justfile() }}
# update go deps
update:
go get .
go get maunium.net/go/mautrix@latest
update *flags:
go get {{flags}} .
go mod tidy
# run linter
@@ -16,11 +15,8 @@ lint:
lintfix:
golangci-lint run --fix ./...
vuln:
govulncheck ./...
# run unit tests
test:
@go test -coverprofile=cover.out ./...
@go test -cover -coverprofile=cover.out -coverpkg=./... -covermode=set ./...
@go tool cover -func=cover.out
-@rm -f cover.out