Initialize module and dependencies

This commit is contained in:
dwrz
2026-01-04 20:57:40 +00:00
commit a3b390c008
514 changed files with 310495 additions and 0 deletions

19
vendor/github.com/emersion/go-imap/v2/.build.yml generated vendored Normal file
View File

@@ -0,0 +1,19 @@
image: alpine/latest
packages:
- dovecot
- go
sources:
- https://github.com/emersion/go-imap#v2
tasks:
- build: |
cd go-imap
go build -race -v ./...
- test: |
cd go-imap
go test -race ./...
- test-dovecot: |
cd go-imap
GOIMAP_TEST_DOVECOT=1 go test -race ./imapclient
- gofmt: |
cd go-imap
test -z $(gofmt -l .)