From 52da8f3fa5a27bace5027eebcc83150c72ee9002 Mon Sep 17 00:00:00 2001 From: Anton Novojilov Date: Thu, 14 Apr 2022 10:38:16 +0300 Subject: [PATCH] Normalize coverage info before sending to codebeat --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eee3bac..c798732 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,9 @@ jobs: env: CODECLIMATE_API_HOST: https://codebeat.co/webhooks/code_coverage CODECLIMATE_REPO_TOKEN: ${{ secrets.CODECLIMATE_TOKEN }} - run: codeclimate-test-reporter < cover.out + run: | + sed -i 's#/v[0-9]\+/#/#g' cover.out + codeclimate-test-reporter < cover.out Aligo: name: Aligo