Remove code climate coverage

pull/7282/head
Gokhan Gulbiz 2023-10-26 16:01:13 +03:00
parent 688c963f47
commit 512d185cc3
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 0 additions and 12 deletions

View File

@ -13,15 +13,3 @@ runs:
token: ${{ inputs.codecov_token }} token: ${{ inputs.codecov_token }}
verbose: true verbose: true
gcov: true gcov: true
- name: Create codeclimate coverage
run: |-
lcov --directory . --capture --output-file lcov.info
lcov --remove lcov.info -o lcov.info '/usr/*'
sed "s=^SF:$PWD/=SF:=g" -i lcov.info # relative pats are required by codeclimate
mkdir -p /tmp/codeclimate
cc-test-reporter format-coverage -t lcov -o /tmp/codeclimate/${{ inputs.flags }}.json lcov.info
shell: bash
- uses: actions/upload-artifact@v3.1.1
with:
path: "/tmp/codeclimate/*.json"
name: codeclimate