Skip to content

fix github action testing #1

fix github action testing

fix github action testing #1

Workflow file for this run

name: testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install SeqDD
run: python -m pip install .[dev]
- name: Test and Compute the code coverage
run: coverage run --source=seqdd
if: matrix.python-version == '3.12'