diff options
author | 2025-03-27 12:01:41 -0600 | |
---|---|---|
committer | 2025-03-31 08:03:12 +0000 | |
commit | f95bf26da08d78c6ed928d8595bfb39e64c602fb (patch) | |
tree | b6e3667674c4899c2a8f97704e2577dd547999b6 /.github/scripts/prescan-go-coverage-ubuntu.sh | |
parent | bb59ea4137416e7d22e72dd15e16e918f6a22dac (diff) |
Additionally disable Sonatype Lifecycle until it is ready
Issue-ID: CIMAN-33
Change-Id: Ie7b5f290421ce471232c58633980078222ceb6c6
Signed-off-by: Kevin Sandi <ksandi@contractor.linuxfoundation.org>
Diffstat (limited to '.github/scripts/prescan-go-coverage-ubuntu.sh')
-rw-r--r-- | .github/scripts/prescan-go-coverage-ubuntu.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/scripts/prescan-go-coverage-ubuntu.sh b/.github/scripts/prescan-go-coverage-ubuntu.sh new file mode 100644 index 0000000..f7e9d55 --- /dev/null +++ b/.github/scripts/prescan-go-coverage-ubuntu.sh @@ -0,0 +1,12 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2025 The Linux Foundation + +#!/bin/bash +echo "--> prescan-go-coverage-ubuntu.sh" + +set -ex + +# Test and coverage +go test -p 1 ./... -coverprofile=coverage.out + +echo "--> prescan-go-coverage-ubuntu.sh ends" |