Declare system LLVM as +python external instead of rebuilding it #534
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 checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| debug_enabled: | |
| type: boolean | |
| description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
| required: false | |
| default: false | |
| jobs: | |
| ruff_format: | |
| runs-on: ubuntu-latest | |
| name: Check formatting with ruff | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: ruff format check | |
| uses: astral-sh/ruff-action@v3 | |
| with: | |
| args: "format --check --diff" |