checking CI after minor changes to return values from modelVerify #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- numpy_debug_v2 | |
#make it main once it is working as expected on numpy_debug_v2 branch. | |
pull_request: | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
style: | |
runs-on: ubuntu-22.04 | |
container: | |
image: dolfinx/dolfinx:stable | |
options: --user 1001 --privileged | |
name: CI test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: run serial check | |
run: | | |
cd ./hippylibX/test && | |
mpirun -n 1 python3 testing_suite_file.py | |
- name: run parallel check | |
run: | | |
cd ./hippylibX/test && | |
mpirun -n 2 python3 testing_suite_file.py | |