Update clang-format workflow to use pre-built container and remove installation step

This commit is contained in:
whaffman 2025-09-10 18:08:56 +02:00
parent 28928c64ff
commit 80d3299b51

View File

@ -8,6 +8,7 @@ on:
jobs: jobs:
clang-tools: clang-tools:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: silkeh/clang:latest # Pre-built container with clang tools
permissions: permissions:
contents: write # Needed to push changes back contents: write # Needed to push changes back
@ -18,11 +19,6 @@ jobs:
with: with:
ref: ${{ github.head_ref }} # checkout the PR branch so we can push back ref: ${{ github.head_ref }} # checkout the PR branch so we can push back
- name: Install clang tools
run: |
sudo apt update
sudo apt install -y clang-format clang-tidy
- name: Run clang-format and auto-fix - name: Run clang-format and auto-fix
run: | run: |
FILES=$(find . -name '*.c' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp') FILES=$(find . -name '*.c' -o -name '*.cpp' -o -name '*.h' -o -name '*.hpp')