mirror of
https://github.com/Kyren223/eko.git
synced 2025-09-05 21:18:14 +00:00
14 lines
210 B
Bash
Executable File
14 lines
210 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
trap 'echo "❌ Check failed"; exit 1' ERR
|
|
|
|
./tools/copyright.sh --check
|
|
test -z "$(go fmt ./...)"
|
|
staticcheck ./...
|
|
go test --cover ./...
|
|
gosec ./...
|
|
|
|
echo "✅ All checks passed"
|