Skip to content

Fixed bug in how LD window thresholds that are passed to plink are co… #24

Fixed bug in how LD window thresholds that are passed to plink are co…

Fixed bug in how LD window thresholds that are passed to plink are co… #24

Workflow file for this run

name: Linux-CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up miniconda
uses: conda-incubator/[email protected]
with:
channels: conda-forge
python-version: ${{ matrix.python-version }}
- name: Set up Conda environment
shell: "bash -l {0}"
run: >
conda create --name "magenpy_ci" -c conda-forge -c anaconda
python=${{matrix.python-version}} pip wheel compilers openblas -y
- name: Install magenpy
shell: "bash -l {0}"
run: |
conda activate magenpy_ci
python -m pip install -v -e .[test]
- name: Run tests
shell: "bash -l {0}"
run: |
conda activate magenpy_ci
pytest -v