Skip to content

Commit a62eff1

Browse files
chore: Refactor Github Action per b/485167538 (#1377)
Co-authored-by: Ben Knutson <benknutson@google.com>
1 parent ac30dd0 commit a62eff1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ jobs:
5959
6060
- name: Verify code coverage. If your reading this and the step has failed, please add tests to cover your changes.
6161
run: |
62-
echo "BASE BRANCH CODE COVERAGE is ${{ env.CUR_COVER }}%"
63-
echo "PULL REQUEST CODE COVERAGE is ${{ env.PR_COVER }}%"
64-
if [ "${{ env.PR_COVER }}" -lt "${{ env.CUR_COVER }}" ]; then
62+
echo "BASE BRANCH CODE COVERAGE is ${CUR_COVER}%"
63+
echo "PULL REQUEST CODE COVERAGE is ${PR_COVER}%"
64+
if [ "${PR_COVER}" -lt "${CUR_COVER}" ]; then
6565
exit 1;
6666
fi

0 commit comments

Comments
 (0)