Skip to content

build: support python >= 3.8 #280

build: support python >= 3.8

build: support python >= 3.8 #280

Workflow file for this run

name: Python CQA
on: [push, pull_request]
# TODO: separate lint and test jobs; lint first, test "needs" lint
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobs
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
SEQREPO_ROOT_DIR: ./tests/data/seqrepo/latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and setuptools
run: |
python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: |
pip install -e .[dev,extras]
- name: Pylint static analysis
run: |
pylint src/ga4gh/{core,vrs}
- name: Test with pytest
run: |
python -m pytest