Skip to content

Commit 14529ca

Browse files
author
Dilawar Singh
committed
Fixes to github actions..
1 parent 7be23ed commit 14529ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
name: C/C++ CI
1+
name: Build PyMOOSE using setup.py
22

33
on: [push]
44

55
jobs:
66
build:
7+
78
runs-on: ubuntu-latest
9+
810
steps:
911
- uses: actions/checkout@v2
1012
- name: Install dependencies
@@ -19,5 +21,5 @@ jobs:
1921
python3 setup.py install test
2022
- name: Post Install
2123
run: |
22-
python3 -c "import moose;moose.test()" || echo "Failed python3 tests"
24+
python3 -c "import moose;moose.test()" || echo "Failed python3 test"
2325
python2 -c "import moose;moose.test()" || echo "Failed python2 tests"

0 commit comments

Comments
 (0)