mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-21 06:17:40 +03:00
9 lines
100 B
Bash
Executable File
9 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "#### Linting"
|
|
golangci-lint run -v
|
|
|
|
echo
|
|
echo "#### Running tests"
|
|
make test |