mirror of
https://github.com/portainer/portainer.git
synced 2025-07-18 21:09:40 +02:00
11 lines
No EOL
161 B
Bash
11 lines
No EOL
161 B
Bash
|
|
#!/bin/bash
|
|
|
|
cd api
|
|
if golangci-lint run -c .golangci.yaml
|
|
then
|
|
echo "golangci-lint run successfully"
|
|
else
|
|
echo "golangci-lint run failed"
|
|
exit 1
|
|
fi |