File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,20 @@ on: [push]
44
55jobs :
66 build :
7-
87 runs-on : ubuntu-latest
9-
108 steps :
119 - uses : actions/checkout@v2
1210 - name : Install dependencies
1311 run : |
1412 sudo apt update
15- sudo apt install libgsl-dev g++ cmake python3-dev python3-numpy
13+ sudo apt install libgsl-dev g++ cmake python3-pip python3-numpy python3-matplotlib
14+ sudo apt install python-dev python-numpy python-matplotlib python-pip
1615 - name : configure
17- run : mkdir -p build && cd build && cmake ..
1816 - name : make
19- run : cd build && make
20- - name : Test
21- run : cd build && ctest --output-on-failure
17+ run : |
18+ python setup.py install test
19+ python3 setup.py install test
20+ - name : Post Install
21+ run : |
22+ python3 -c "import moose;moose.test()" || echo "Failed python3 tests"
23+ python2 -c "import moose;moose.test()" || echo "Failed python2 tests"
You can’t perform that action at this time.
0 commit comments