Skip to content

Commit ffdb9e3

Browse files
committed
Fix GitHub action config
1 parent 04aba38 commit ffdb9e3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on: [push, pull_request]
44
jobs:
55
test-new:
66

7+
runs-on: ubuntu-latest
8+
79
steps:
810
- name: Checkout code
911
uses: actions/checkout@v2
@@ -13,7 +15,10 @@ jobs:
1315
python-version: '3.x'
1416

1517
- name: Install requirements (PIP)
16-
run: pip3 install pytest sphinx
18+
run: pip3 install pytest sphinx numpy
19+
20+
- name: Setup up PYTHONPATH
21+
run: echo "PYTHONPATH=${PWD}/src" >> $GITHUB_ENV
1722

1823
- name: Run test pytest
1924
run: python3 -m pytest

0 commit comments

Comments
 (0)