Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

chore: Replace Codecov with CodeClimate coverage #4

chore: Replace Codecov with CodeClimate coverage

chore: Replace Codecov with CodeClimate coverage #4

Workflow file for this run

name: build
on:
push:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.6]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/test.txt
- name: Test with Pytest
run: pytest --cov=servifier --cov-config .coveragerc --cov-report=xml
- name: Upload coverage report to Code Climate
uses: paambaati/[email protected]