use gotestsum to generate junit output for CircleCI test results rather than using go-junit-report
use the go mod cache properly in CircleCI to reduce run times
I also ran a go mod tidy and the one addition to the go mod file came from:
go mod why -m github.com/dnaeon/go-vcr v1.0.1
# github.com/dnaeon/go-vcr
github.com/hashicorp/go-discover/provider/linode
github.com/linode/linodego
github.com/linode/linodego.test
github.com/dnaeon/go-vcr/recorder
# v1.0.1
(main module does not need module v1.0.1)
The K8S test failure will be resolved in #114 and I plan to rebase this at that time (or we can merge them separately since they don't touch the same files and master will end up having both this change and #114 in the end).
There are a couple changes I made in CircleCI:
gotestsum
to generate junit output for CircleCI test results rather than usinggo-junit-report
I also ran a
go mod tidy
and the one addition to the go mod file came from:The K8S test failure will be resolved in #114 and I plan to rebase this at that time (or we can merge them separately since they don't touch the same files and master will end up having both this change and #114 in the end).