Skip to content

Addressing JOSS review #25

Addressing JOSS review

Addressing JOSS review #25

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- "seqikpy/**"
- "tests/**"
jobs:
test-and-format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.14"] # oldest and newest supported versions
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests with pytest
run: python -m pytest -p no:warnings tests
- name: Check code formatting with Black
run: black --check seqikpy tests --line-length 88