Fix 1D multi-rank MPI_GATHERV bug in post-process silo output (#1138) #465
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: Lint Toolchain | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| lint-toolchain: | |
| name: Lint Toolchain | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: MFC Python setup | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.14' | |
| - name: Initialize MFC | |
| run: ./mfc.sh init | |
| - name: Lint and test the toolchain | |
| run: ./mfc.sh lint | |
| - name: Generate toolchain files | |
| run: ./mfc.sh generate | |
| - name: CLI smoke tests | |
| run: | | |
| ./mfc.sh --help | |
| ./mfc.sh build --help | |
| ./mfc.sh run --help | |
| ./mfc.sh test --help | |
| ./mfc.sh params --count | |
| ./mfc.sh new --list | |
| - name: Bash completion syntax check | |
| run: bash -n toolchain/completions/mfc.bash | |
| - name: Validate example cases | |
| run: | | |
| ./mfc.sh validate examples/1D_sodshocktube/case.py | |
| ./mfc.sh validate examples/2D_shockbubble/case.py |