From 08a838a3c5e2a9cc0acf4c36b99942e9d05259a5 Mon Sep 17 00:00:00 2001 From: Dextinfire <> Date: Tue, 17 Sep 2024 02:39:46 -0700 Subject: [PATCH] Use newer clang format with ignore file --- .github/workflows/pipeline.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index d7f380d2..ef5364ac 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -23,7 +23,11 @@ jobs: uses: actions/checkout@v4 - name: Install ClangFormat - run: sudo apt-get install -y clang-format + run: | + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 18 + sudo apt-get install clang-format-18 - name: Run linters uses: wearerequired/lint-action@v2