Skip to content

test defaulting arch #76

test defaulting arch

test defaulting arch #76

name: test_bioscrape
on:
push:
branches: ["*","!master"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [macos-latest]
python-version: ["3.7", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.7' && 'x64' || '' }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: install bioscrape and lineage
run: pip install .
- name: Test bioscrape with pytest
run: pytest
- name: install lineage
run: python setup.py install lineage