Skip to content

Big refactor

Big refactor #4

Workflow file for this run

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)"