Skip to content

Multifidelity models #4

Multifidelity models

Multifidelity models #4

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
shell: bash -l {0}
run: |
conda install python=3.7
conda install numpy
conda install -c conda-forge gpy
conda install pytorch
conda install pandas
conda install -c conda-forge cclib
conda install -c conda-forge hyperopt
conda install -c conda-forge scikit-learn
pip install -e .
- name: Test with pytest
run: |
conda install pytest
pytest