Hi there!
This is mainly programmer error, but I thought I’d report it as a “bug” to help others. I was running into a “circle-bug” error, and it was being caused by blank values in a circle.yml map.
test:
override:
- go test -v -race ./...:
environment:
# a "blank" value such as the one below causes a crash:
password:
I managed to fix by simply adding an empty string ("") as the value, but thought I’d make a note here for others. On the upside, I’m now a little smarter with YAML
Thanks!