mirror of
https://github.com/containers/skopeo.git
synced 2025-04-28 19:24:24 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.38.0 to 0.38.1. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.38.0...v0.38.1) Signed-off-by: dependabot[bot] <support@github.com>
13 lines
285 B
Bash
13 lines
285 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "" > coverage.txt
|
|
|
|
for d in $(go list ./... | grep -v vendor); do
|
|
go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d
|
|
if [ -f profile.out ]; then
|
|
cat profile.out >> coverage.txt
|
|
rm profile.out
|
|
fi
|
|
done
|