Skip to content

update merging

update merging #565

Workflow file for this run

name: Workflow for Codecov
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # macos-latest, windows-latest
env:
OS: ${{ matrix.os }}
PYTHON: '3.8'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Generate coverage report
run: |
pip install -r requirements.txt
pip install -U scikit-learn
pip install pytest-cov
pytest clx_unittest.py --cov=classix
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2