diff --git a/.github/workflows/cmake-compile.yml b/.github/workflows/cmake-compile.yml index 225c285..f291042 100644 --- a/.github/workflows/cmake-compile.yml +++ b/.github/workflows/cmake-compile.yml @@ -19,6 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Clang (Linux) + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update && sudo apt-get install -y clang + - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}