more stuff in fixing chunker mat, adding non-legendre points option t… #167
Workflow file for this run
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
# based on Dan Fortunato's ultra SEM repo | |
name: chunkie tests | |
on: [push] | |
jobs: | |
ultraSEM-test: | |
name: do chunkie tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install MATLAB | |
uses: matlab-actions/setup-matlab@v0 | |
- name: Install FMMLIB | |
run: cd chunkie/fmm2d; make matlab | |
- name: Run commands | |
uses: matlab-actions/run-command@v0 | |
with: | |
command: cd('./devtools/test'); res = runtests; assert(all([res.Passed])) |