Skip to content

Document GTF/GFF tag names - #116 #52

Document GTF/GFF tag names - #116

Document GTF/GFF tag names - #116 #52

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# 'test' extra: pytest/msgspec/pysam, 'build' extra: HTSeq/ijson/biopython/pyhgvs
# (the GFF/GFF parser and pyhgvs tests need the build extra)
pip install -e ".[test,build]"
- name: Run tests
run: python -m pytest tests/ -v