diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cb1ec2b..24d674f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,6 +22,11 @@ jobs: runs-on: ${{ matrix.os }} name: "Build/Test ${{ matrix.os }} ${{ matrix.compiler.name }} ${{ matrix.config }}" steps: + - name: Install clang + run: | + sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100 + sudo update-alternatives --set clang /usr/bin/clang-15 + - name: Setup Python uses: actions/setup-python@v5 with: