Tests: Fix AMREX_HOME in some tests' gnu make file (#5325) #5001
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: codespell | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.head_ref }}-codespell | |
| cancel-in-progress: true | |
| jobs: | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install codespell | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends python3-pip | |
| pip3 install --user codespell | |
| - name: Run codespell | |
| run: codespell |