Get system TTF fonts by name in Go. Currently only works for windows.
go get "github.com/LLKennedy/gosysfonts"
font, err := gosysfonts.New().GetFont("arial")
On windows, the simplest way to test is to use the powershell script.
./test.ps1
To emulate the testing which occurs in build pipelines, run the following:
go test . -race -coverprofile=coverage.out;