File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 50
50
- name : Set current directory in env variable
51
51
run : echo "MYDIR=$(pwd)" >> $GITHUB_ENV
52
52
53
+ - name : Set PYTHONPATH and PATH for later steps
54
+ run : |
55
+ echo "PYTHONPATH=$MYDIR/FoBiS/src/main/python:$PYTHONPATH" >> $GITHUB_ENV
56
+ echo "PATH=$MYDIR/FoBiS/src/main/python:$PATH" >> $GITHUB_ENV
57
+
53
58
- name : Install Python dependencies
54
59
if : contains( matrix.os, 'ubuntu')
55
60
run : |
58
63
pip install ford pygooglechart fpm
59
64
# just get the latest FoBiS from git:
60
65
git clone https://github.com/szaghi/FoBiS.git
61
- export PYTHONPATH="$MYDIR/FoBiS/src/main/python:$PYTHONPATH"
62
- export PATH="$MYDIR/FoBiS/src/main/python:$PATH"
63
66
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
64
67
65
68
- name : Install GFortran Linux
You can’t perform that action at this time.
0 commit comments