Files
eko/tools/check-ci.sh

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"