-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2eb0b96
commit a0447db
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
- name: Install conda | ||
continue-on-error: true | ||
run: | | ||
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
curl -sS -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda | ||
export PATH=$HOME/miniconda/bin:$PATH | ||
conda init bash > /dev/null | ||
|
@@ -36,11 +36,11 @@ jobs: | |
continue-on-error: true | ||
run : | | ||
export PATH=$HOME/miniconda/bin:$PATH | ||
conda create -n test-env python=3.10 > /dev/null | ||
conda init bash > /dev/null | ||
conda create -q -n test-env python=3.10 > /dev/null | ||
conda init bash > /dev/null | ||
conda activate test-env | ||
conda install pheno-utils | ||
conda list | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/[email protected] | ||
|