From a5bec118173e630bddc28f02bcb285940f1893c9 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 30 Mar 2026 19:37:43 +0200 Subject: [PATCH] feat(gh/workflow): adding the installation of clang --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 427cfe1..98bd29f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Install clang + run: apt-get update && apt-get install -y clang - name: Mandatory run: CC=clang TERM=xterm make - name: Bonus