Skip to content

v0.2.0

v0.2.0 #78

Workflow file for this run

name: Test scCellFie
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Install package
run: |
python -m pip install -e .
- name: Test with pytest and coverage
run: |
pytest -vv --cov --cov-report xml
- name: Check coverage with CodeCov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}