update deps

This commit is contained in:
Aine
2024-05-16 23:05:21 +03:00
parent ea1533acae
commit cfe31d89b9
78 changed files with 10434 additions and 5472 deletions

View File

@@ -1,4 +1,4 @@
image: alpine/edge
image: alpine/latest
packages:
- go
sources:
@@ -8,10 +8,13 @@ artifacts:
tasks:
- build: |
cd go-smtp
go build -v ./...
go build -race -v ./...
- test: |
cd go-smtp
go test -coverprofile=coverage.txt -covermode=atomic ./...
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- coverage: |
cd go-smtp
go tool cover -html=coverage.txt -o ~/coverage.html
- gofmt: |
cd go-smtp
test -z $(gofmt -l .)