Skip to content

Commit

Permalink
Add codeclimate coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
kaziamov committed Dec 10, 2023
1 parent 51682df commit 2d5ff6f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Coverage

on:
push:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install poetry
- run: make install
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true

0 comments on commit 2d5ff6f

Please sign in to comment.