Skip to content

Bug fix in psuedo_metrics #16

Bug fix in psuedo_metrics

Bug fix in psuedo_metrics #16

Workflow file for this run

name: OSX-CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, macos-14]
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/setup-miniconda@v3
with:
channels: conda-forge
python-version: ${{ matrix.python-version }}
- name: Set up Conda environment
shell: "bash -l {0}"
run: >
conda create --name "viprs_ci" -c conda-forge -c anaconda
python=${{matrix.python-version}} pip wheel compilers openblas -y
- name: Show info about `viprs_ci` environment
shell: "bash -l {0}"
run: |
conda list --show-channel-urls -n viprs_ci
- name: Install viprs
shell: "bash -l {0}"
run: |
conda activate viprs_ci
python -m pip install -v -e .[test]
- name: Run tests
shell: "bash -l {0}"
run: |
conda activate viprs_ci
pytest -v