niyumard 3b691a58c4 Revert "/bin/bash -> /usr/bin/env bash"
This reverts commit 76349f8350d7551e70da8533bcd7daffcad9795a.
2023-04-19 18:25:37 +03:30

11 lines
339 B
Bash
Executable File

#!/bin/bash
# Sanity testing of the examples.
set -eo pipefail
# go vet will attempt to build each example, making sure it compiles. It will
# also report known issues with the code. Disabling the -unreachable check
# because it will fire false positives for some examples demonstrating panics.
go vet -unreachable=false ./examples/...