@@ -16,31 +16,30 @@ jobs:
16
16
build :
17
17
# The type of runner that the job will run on
18
18
runs-on : ubuntu-latest
19
- # runs-on: macos-latest
20
- # runs-on: macos-14
21
19
# runs-on: ubuntu-22.04
22
20
# Steps represent a sequence of tasks that will be executed as part of the job
23
21
steps :
22
+ - uses : actions/checkout@v4
24
23
- name : Install dependencies
25
24
# set up conda
26
25
27
26
# with:
28
27
# conda-channels: bioconda
29
- - uses : actions/checkout@v2
30
28
# install dependencies
31
- - run : conda env create -f OrthoIndex.yaml
29
+ run : conda env create -f OrthoIndex.yaml
32
30
33
- # - name: activate
34
- - run : conda init bash
35
- - run : conda init
36
- - run : source /home/runner/.bashrc
37
- - run : cat ~/.bashrc
38
- - run : conda env list
39
- - run : conda --version
31
+ - name : Activate
32
+ run : |
33
+ conda init bash
34
+ conda init
35
+ source /home/runner/.bashrc
36
+ cat ~/.bashrc
37
+ conda env list
38
+ conda --version
40
39
# - run: export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH
41
- - run : source /usr/share//miniconda/etc/profile.d/conda.sh
42
- - run : ls -al /usr/share/miniconda/envs/OrthoIndex/bin
43
- - run : which python
40
+ source /usr/share//miniconda/etc/profile.d/conda.sh
41
+ ls -al /usr/share/miniconda/envs/OrthoIndex/bin
42
+ which python
44
43
# - run: conda activate OrthoIndex
45
44
# - run: which python
46
45
@@ -49,10 +48,11 @@ jobs:
49
48
run : export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH && python setup.py install
50
49
# run: python setup.py install
51
50
52
- # - name: run test
51
+ - name : Test SOI
53
52
# run test
54
- - run : ls -al
55
- - run : pwd
56
- - run : cd example_data && export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH && bash example.sh
53
+ run : |
54
+ ls -al
55
+ pwd
56
+ cd example_data && export PATH=/usr/share/miniconda/envs/OrthoIndex/bin:$PATH && bash example.sh
57
57
# - run: cd example_data && bash example.sh
58
58
0 commit comments