We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04aba38 commit ffdb9e3Copy full SHA for ffdb9e3
1 file changed
.github/workflows/ci.yml
@@ -4,6 +4,8 @@ on: [push, pull_request]
4
jobs:
5
test-new:
6
7
+ runs-on: ubuntu-latest
8
+
9
steps:
10
- name: Checkout code
11
uses: actions/checkout@v2
@@ -13,7 +15,10 @@ jobs:
13
15
python-version: '3.x'
14
16
17
- name: Install requirements (PIP)
- 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
22
23
- name: Run test pytest
24
run: python3 -m pytest
0 commit comments