mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-14 18:02:55 +01:00
Winni Neessen
19dcba620a
Eliminated unnecessary environment variables and pkg update step to streamline the CI process. Simplified the test script by removing verbose flag from the go test command.
23 lines
No EOL
448 B
YAML
23 lines
No EOL
448 B
YAML
# SPDX-FileCopyrightText: 2022 Winni Neessen <winni@neessen.dev>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
freebsd_task:
|
|
name: FreeBSD
|
|
|
|
matrix:
|
|
- name: FreeBSD 13.3
|
|
freebsd_instance:
|
|
image_family: freebsd-13-3
|
|
- name: FreeBSD 14.0
|
|
freebsd_instance:
|
|
image_family: freebsd-14-0
|
|
|
|
env:
|
|
TEST_SKIP_SENDMAIL: 1
|
|
|
|
pkginstall_script:
|
|
- pkg install -y go
|
|
|
|
test_script:
|
|
- go test -race -cover -shuffle=on ./... |