Skip to content

add test-coverage, run_tests.yml and add coverage.xml to .gitignore #1

add test-coverage, run_tests.yml and add coverage.xml to .gitignore

add test-coverage, run_tests.yml and add coverage.xml to .gitignore #1

Workflow file for this run

name: tests_coverage
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.12]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# make depends on poetry
- name: Install dependencies
run: |
pip install poetry
make install
- name: Run linter
run: |
make lint
- name: Run tests
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
run: |
make test
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v5.0.0
if: github.ref_name == 'main'
env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true