Skip to content

Add formatting infrastructure to the project #9

Add formatting infrastructure to the project

Add formatting infrastructure to the project #9

Workflow file for this run

name: Lint
on:
pull_request:
paths:
- src/**
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Linux
run: |
export DEBIAN_FRONTEND=noninteractive
wget https://apt.llvm.org/llvm.sh
sed -i '/apt-get install/d' llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 19
sudo apt-get install -y --no-install-recommends clang-format-19
- name: Lint
run: |
python3 ./tools/cross/format.py --check
env:
CLANG_FORMAT: clang-format-19