From 419d639b198a0a62dfe36049ac26a96edba69511 Mon Sep 17 00:00:00 2001 From: Liat Schulzinger Date: Tue, 13 Feb 2024 16:29:49 +0200 Subject: [PATCH] trigger --- .github/workflows/liat.yml | 40 +++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/.github/workflows/liat.yml b/.github/workflows/liat.yml index c161bfc..2edca5a 100644 --- a/.github/workflows/liat.yml +++ b/.github/workflows/liat.yml @@ -22,20 +22,32 @@ jobs: - name: Checkout Code uses: actions/checkout@v3 # Checks out the repository under $GITHUB_WORKSPACE. - - name: Install conda - continue-on-error: true - run: | - curl -sS -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh - bash Miniconda3-latest-Linux-x86_64.sh -b -u -p $HOME/miniconda - - - name: Create conda environment - run : | - export PATH=$HOME/miniconda/bin:$PATH - conda init bash - # conda create -q -n test-env python=3.10 > /dev/null - # conda init bash > /dev/null - # conda activate test-env - # conda install pheno-utils + - name: Setup conda + uses: conda-incubator/setup-miniconda@v3 + with: + activate-environment: pheno + python-version: 3.11 + # environment-file: etc/example-environment.yml + - name: Conda info + shell: bash -el {0} + run: conda info + - name: Pheno Utils + shell: bash -el {0} + run: conda install pheno-utils + # - name: Install conda + # continue-on-error: true + # run: | + # curl -sS -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh + # bash Miniconda3-latest-Linux-x86_64.sh -b -u -p $HOME/miniconda + + # - name: Create conda environment + # run : | + # export PATH=$HOME/miniconda/bin:$PATH + # conda init bash + # # conda create -q -n test-env python=3.10 > /dev/null + # # conda init bash > /dev/null + # # conda activate test-env + # # conda install pheno-utils - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v3