mirror of
https://github.com/holos-run/holos.git
synced 2026-03-03 04:49:56 +00:00
ExtractYAML is no longer used, also cleans up connectrpc packages, error handling, tracing, and memory profiling.
5 lines
122 B
Bash
Executable File
5 lines
122 B
Bash
Executable File
#! /bin/bash
|
|
set -xeuo pipefail
|
|
go test -coverpkg=./... -coverprofile=coverage.out ./...
|
|
go tool cover -func=coverage.out
|