Skip to content

Merge pull request #45 from an-altosian/develop #220

Merge pull request #45 from an-altosian/develop

Merge pull request #45 from an-altosian/develop #220

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda install -n base -c bioconda -c conda-forge python=3.10 packaging pandas scanpy pytest -y
- name: pytest
run: |
pip install .
pytest