Skip to content

Add genome-alignment and RNA004 support (xPore v2.2) #1

Add genome-alignment and RNA004 support (xPore v2.2)

Add genome-alignment and RNA004 support (xPore v2.2) #1

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
test:
# ubuntu-22.04 (not ubuntu-latest) so that Python 3.8 is reliably available via setup-python.
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package with test dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run tests
run: pytest -v