Can't find go when running with sudo

I have go code that needs to be tested with sudo, but when I have travis ci running the test portion of the Makefile, it always fails claiming that go isn’t found.

make tests
sudo go test "-tags=linux_bpf" ./pkg/tracker
sudo: go: command not found
Makefile:10: recipe for target 'tests' failed
make: *** [tests] Error 1
The command "make tests" exited with 2.

Anyone have any ideas how I can make the environment find go when running with sudo?