Skip to content

Merge pull request #29 from arogozhnikov/dev #85

Merge pull request #29 from arogozhnikov/dev

Merge pull request #29 from arogozhnikov/dev #85

Workflow file for this run

name: Run tests and deploy
on: push
jobs:
run-my-tests:
name: Run tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install package and dependencies
run: |
python -m pip install pytest
python -m pip install .
- name: Run pytest
run: python -m pytest -s tests
- name: Run example
run: cd examples && python 1-plain_demultiplexing.py