From c9ecc2f7fb7d68ba53c6bf4c617f4de1e691220c Mon Sep 17 00:00:00 2001 From: Ciaran O' Rourke Date: Sat, 13 Jul 2024 19:20:52 -0700 Subject: [PATCH] tmp: check clang-format version --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51deced..0bfb446 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,11 @@ jobs: run: pip3 install codespell - name: Lint - run: cmake -D FORMAT_COMMAND=clang-format-14 -P cmake/lint.cmake + run: | + clang-format --version + apt update + apt search clang-format + cmake -D FORMAT_COMMAND=clang-format-14 -P cmake/lint.cmake - name: Spell check if: always()