mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-09 15:32:54 +01:00
Winni Neessen
697584b311
The FreeBSD version used for testing in .cirrus.yml has been updated from 12.4 to 14.0. This change ensures that the tests run on the latest stable version of the operating system, providing more reliable and up-to-date test results.
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.2
|
|
freebsd_instance:
|
|
image_family: freebsd-13-2
|
|
- 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 ./... |