From db13bd94a126d669780165f9b02f838d0879485a Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Fri, 29 Jul 2022 13:29:50 +0200 Subject: [PATCH] [autotest] use separate action for code climate --- .github/workflows/autotest.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autotest.yml b/.github/workflows/autotest.yml index 889bac4..14c6142 100644 --- a/.github/workflows/autotest.yml +++ b/.github/workflows/autotest.yml @@ -38,5 +38,8 @@ jobs: - name: Run tests run: | RESULT=coverage run --source=. -m pytest tests -v - coverage xml - ./cc-test-reporter -d after-build --exit-status $RESULT + - name: Report coverage + uses: paambaati/codeclimate-action@v3.0.0 + with: + coverageCommand: coverage xml + debug: true