9 lines
No EOL
100 B
Bash
Executable file
9 lines
No EOL
100 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
echo "#### Linting"
|
|
golangci-lint run -v
|
|
|
|
echo
|
|
echo "#### Running tests"
|
|
make test |