fixed bug in MMG5_split6 that caused MMG5_chkedg warnings #668
Workflow file for this run
This file contains hidden or 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: Long tests | |
| on: | |
| # run tests on push events | |
| push: | |
| # run tests on PR events | |
| pull_request: | |
| types: [opened, synchronize] | |
| # run tests manually on a given branch (default is master) | |
| workflow_dispatch: | |
| # Inputs the workflow accepts. | |
| inputs: | |
| branch: | |
| # branch to test | |
| description: 'branch to test' | |
| # Default value if no value is explicitly provided | |
| default: 'master' | |
| required: false | |
| # job | |
| jobs: | |
| mmg-debug: | |
| uses: ./.github/workflows/main-job.yml | |
| with: | |
| cmake_build_type: RelWithAssert | |
| add_cmake_cfg_args: -D LONG_TESTS=ON | |
| branch_name: ${{github.event.inputs.branch}} | |
| code_coverage: true | |
| secrets: inherit |