Skip to content

Commit 4835ddb

Browse files
author
zhangrengang
committed
test CI: final4
1 parent b2438e0 commit 4835ddb

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/main-linux.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626

2727
- name: Install dependencies
2828
# install dependencies
29-
run: conda env create -f OrthoIndex.yaml
29+
run: |
30+
conda env create -f OrthoIndex.yaml
3031
3132
- name: Activate
3233
run: |
@@ -45,11 +46,11 @@ jobs:
4546

4647
- name: Install OrthoIndex
4748
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
48-
run: export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH && python setup.py install
49+
run: |
50+
export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH && python setup.py install
4951
# run: python setup.py install
5052

5153
- name: Test SOI
52-
# run test
5354
run: |
5455
ls -al
5556
pwd

.github/workflows/main-mac.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
uses: actions/setup-python@v3
1515
with:
1616
python-version: '3.10'
17-
- name: Add conda to system path
18-
run: |
19-
# $CONDA is an environment variable pointing to the root of the miniconda directory
20-
echo $CONDA
21-
ls /Users/runner/hostedtoolcache/
22-
echo $CONDA/bin >> $GITHUB_PATH
23-
echo "\n"
24-
find /Users/runner/work/_actions/
17+
# - name: Add conda to system path
18+
# run: |
19+
# # $CONDA is an environment variable pointing to the root of the miniconda directory
20+
# echo $CONDA
21+
# ls /Users/runner/hostedtoolcache/
22+
# echo $CONDA/bin >> $GITHUB_PATH
23+
# echo "\n"
24+
# find /Users/runner/work/_actions/
2525
- name: Install Miniconda
2626
uses: conda-incubator/setup-miniconda@v2
2727
with:

0 commit comments

Comments
 (0)