Skip to content

Commit 5e8733d

Browse files
committed
test.yaml: put the long inline script block into multiple sections
1 parent 19976ca commit 5e8733d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-python@v2
1515
with:
1616
python-version: ${{ matrix.python-version }}
17-
- name: Install dependencies
17+
- name: Install Boost Python
1818
env:
1919
python_version: ${{ matrix.python-version }}
2020
boost_version: "1.79.0"
@@ -32,11 +32,15 @@ jobs:
3232
cd ${{ github.workspace }}
3333
3434
sudo ln -s "/usr/local/lib/libboost_python${python_version_abbr}.a" "/usr/local/lib/libboost_python.a"
35+
- name: Install dependencies
36+
run: |
3537
pip install pytest
3638
pip install Pillow
3739
pip install kiwisolver
3840
pip install gensim
3941
pip install lxml
42+
- name: Build and install easygraph
43+
run: |
4044
python setup.py build_ext -l boost_python -L "/usr/local/lib" -I "/usr/local/include"
4145
python setup.py install
4246
- name: Test with pytest

0 commit comments

Comments
 (0)