mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-02-04 03:52:41 +00:00
10 lines
267 B
Bash
Executable File
10 lines
267 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -euo pipefail
|
|
COVERAGE_OUTPUT="$PWD/unit-test-coverage/coverage.txt"
|
|
cd pinniped
|
|
codecov -t ${CODECOV_TOKEN} -f "${COVERAGE_OUTPUT}"
|