From 316ea7d2d961fae47dae93cbec6c676f66709b86 Mon Sep 17 00:00:00 2001 From: dimkouv Date: Thu, 3 Oct 2024 20:47:51 +0300 Subject: [PATCH] edit text --- .github/workflows/ccip-ocr3-build-lint-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ccip-ocr3-build-lint-test.yml b/.github/workflows/ccip-ocr3-build-lint-test.yml index d17c15787..9f73d9d58 100644 --- a/.github/workflows/ccip-ocr3-build-lint-test.yml +++ b/.github/workflows/ccip-ocr3-build-lint-test.yml @@ -48,9 +48,10 @@ jobs: git checkout ${{ github.base_ref }} { time TEST_COUNT=1 COVERAGE_FILE=coverage.out make test; } 2> test-results.txt real_time=$(cat test-results.txt | grep real | awk '{print $2}') + echo "tests_duration_target=$real_time" >> $GITHUB_ENV total=$(go tool cover -func=coverage_target.out | grep total | awk '{print $3}') echo "coverage_target=$total" >> $GITHUB_ENV - echo "tests_duration_target=$real_time" >> $GITHUB_ENV + echo "Tests duration: $real_time" - name: Remove previous coverage comments uses: actions/github-script@v6 if: github.event_name == 'pull_request'