mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Winni Neessen
2801193074
Changed the CI configuration to use FreeBSD 13.3 instead of 13.2. This update ensures that the CI runs with the latest available FreeBSD image, improving compatibility and performance.
25 lines
No EOL
494 B
YAML
25 lines
No EOL
494 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_ALLOW_SEND: 0
|
|
TEST_SKIP_SENDMAIL: 1
|
|
|
|
pkginstall_script:
|
|
- pkg update -f
|
|
- pkg install -y go
|
|
|
|
test_script:
|
|
- go test -v -race -cover -shuffle=on ./... |