[fpie] fix OpenMP grid races and default thread count #174
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, 'ci skip')" | |
| steps: | |
| - name: Cancel previous run | |
| uses: styfle/cancel-workflow-action@0.9.1 | |
| with: | |
| access_token: ${{ github.token }} | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Upgrade pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: ruff | |
| run: | | |
| make ruff | |
| - name: ruff format | |
| run: | | |
| make py-format | |
| - name: cpplint | |
| run: | | |
| make cpplint | |
| - name: clang-format | |
| run: | | |
| make clang-format | |
| - name: cmake-format | |
| run: | | |
| make cmake-format | |
| - name: docstyle | |
| run: | | |
| make docstyle | |
| - name: spelling | |
| run: | | |
| make spelling |