add a check on integrator.ode_max_steps #1436
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: "clang-tidy" | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| clang_tidy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Get AMReX | |
| run: | | |
| mkdir external | |
| cd external | |
| git clone https://github.com/AMReX-Codes/amrex.git | |
| cd amrex | |
| git checkout development | |
| echo 'AMREX_HOME=$(GITHUB_WORKSPACE)/external/amrex' >> $GITHUB_ENV | |
| echo $AMREX_HOME | |
| if [[ -n "${AMREX_HOME}" ]]; then exit 1; fi | |
| cd ../.. | |
| - name: Install dependencies | |
| run: | | |
| .github/workflows/dependencies_clang-tidy-apt-llvm.sh 19 | |
| - name: Compile burn_cell_sdc | |
| run: | | |
| cd unit_test/burn_cell_sdc | |
| make USE_MPI=FALSE USE_CLANG_TIDY=TRUE CLANG_TIDY=clang-tidy-19 CLANG_TIDY_WARN_ERROR=TRUE -j 4 | |