Merge pull request #29 from arogozhnikov/dev #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |