Expand MA Helmholtz demo to interpolate soln field #202
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
name: 'Run Movement test suite' | |
on: | |
# Run test suite whenever main is updated | |
push: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
- '**.geo' | |
- '.github/workflows/test_suite.yml' | |
- 'pyproject.toml' | |
# Run test suite whenever commits are pushed to an open PR | |
pull_request: | |
paths: | |
- '**.py' | |
- '**.geo' | |
- '.github/workflows/test_suite.yml' | |
- 'pyproject.toml' | |
# Run test suite every Sunday at 1AM | |
schedule: | |
- cron: '0 1 * * 0' | |
jobs: | |
test_suite: | |
uses: mesh-adaptation/docs/.github/workflows/reusable_test_suite.yml@main |