Big refactor #4
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: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install tools | |
| run: | | |
| pipx install clang-format==22.1.8 | |
| pipx install poetry==2.4.1 | |
| - name: Check generated files and formatting | |
| run: | | |
| make api-generate | |
| make format | |
| make lint | |
| git diff --exit-code | |
| test -z "$(git status --porcelain)" |