Skip to content

Merge branch 'master' of https://github.com/ersilia-os/ersilia #11

Merge branch 'master' of https://github.com/ersilia-os/ersilia

Merge branch 'master' of https://github.com/ersilia-os/ersilia #11

Workflow file for this run

name: Install Ersilia
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
workflow_dispatch:
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # [email protected]
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Source conda
run: source $CONDA/etc/profile.d/conda.sh
- name: Install dependencies
run: |
source activate
conda init
conda install git-lfs -c conda-forge
git-lfs install
conda install gh -c conda-forge
- name: Install ersilia from source
run: |
source activate
python --version
echo "After conda init"
conda init
python -m pip install -e .
- name: Ersilia help
run: |
ersilia --help