From 512c5651091ca3db5eb3eb84fc9a6f9d9f97d649 Mon Sep 17 00:00:00 2001 From: Peter <46405338+gadfort@users.noreply.github.com> Date: Wed, 20 Nov 2024 09:47:55 -0600 Subject: [PATCH] ensure clang-format-14 is installed on CI (#265) Co-authored-by: azaidy --- .github/workflows/lint.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7f754922..23a63efd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -83,6 +83,11 @@ jobs: timeout-minutes: 5 steps: + - name: Install clang-format + run: | + sudo apt-get update + sudo apt-get install -y clang-format-14 + - name: Check out Git repository uses: actions/checkout@v4