File tree 1 file changed +8
-13
lines changed
1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change 16
16
strategy :
17
17
max-parallel : 5
18
18
matrix :
19
- python : [3.7 , 3.8, 3.9 ]
19
+ python : [3.8 , 3.9, '3.10' ]
20
20
fail-fast : false
21
21
22
22
@@ -28,25 +28,20 @@ jobs:
28
28
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
29
29
- name : install graphviz
30
30
run : |
31
- sudo apt-get install -y graphviz
31
+ sudo apt update
32
+ sudo apt-get install -y graphviz software-properties-common
33
+ sudo add-apt-repository -y ppa:apptainer/ppa
34
+ sudo apt update
35
+ sudo apt install -y apptainer
32
36
33
37
- name : checkout git repo
34
- uses : actions/checkout@v2
38
+ uses : actions/checkout@v3
35
39
36
40
- name : Set up Python 3.X
37
- uses : actions/setup-python@v2
41
+ uses : actions/setup-python@v3
38
42
with :
39
43
python-version : ${{ matrix.python }}
40
44
41
- - name : Add conda to system path
42
- run : |
43
- # $CONDA is an environment variable pointing to the root of the miniconda directory
44
- echo $CONDA/bin >> $GITHUB_PATH
45
-
46
- - name : conda
47
- run : |
48
- conda install -c conda-forge -c bioconda --quiet -y python=${{ matrix.python }} 'singularity>3'
49
-
50
45
- name : Install dependencies
51
46
run : |
52
47
pip install .[testing]
You can’t perform that action at this time.
0 commit comments