We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be23ed commit 14529caCopy full SHA for 14529ca
.github/workflows/build.yml
@@ -1,10 +1,12 @@
1
-name: C/C++ CI
+name: Build PyMOOSE using setup.py
2
3
on: [push]
4
5
jobs:
6
build:
7
+
8
runs-on: ubuntu-latest
9
10
steps:
11
- uses: actions/checkout@v2
12
- name: Install dependencies
@@ -19,5 +21,5 @@ jobs:
19
21
python3 setup.py install test
20
22
- name: Post Install
23
run: |
- python3 -c "import moose;moose.test()" || echo "Failed python3 tests"
24
+ python3 -c "import moose;moose.test()" || echo "Failed python3 test"
25
python2 -c "import moose;moose.test()" || echo "Failed python2 tests"
0 commit comments