Skip to content

Commit a19dc56

Browse files
committed
CI
1 parent 9e2ab30 commit a19dc56

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
- name: Set current directory in env variable
5151
run: echo "MYDIR=$(pwd)" >> $GITHUB_ENV
5252

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+
5358
- name: Install Python dependencies
5459
if: contains( matrix.os, 'ubuntu')
5560
run: |
@@ -58,8 +63,6 @@ jobs:
5863
pip install ford pygooglechart fpm
5964
# just get the latest FoBiS from git:
6065
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"
6366
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
6467
6568
- name: Install GFortran Linux

0 commit comments

Comments
 (0)