We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f4e54 commit c8b626bCopy full SHA for c8b626b
.github/workflows/ci.yaml
@@ -22,7 +22,12 @@ jobs:
22
runs-on: ${{ matrix.os }}
23
name: "Build/Test ${{ matrix.os }} ${{ matrix.compiler.name }} ${{ matrix.config }}"
24
steps:
25
- - name: Setup Python
+ - name: Install clang
26
+ run: |
27
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 100
28
+ sudo update-alternatives --set clang /usr/bin/clang-15
29
+
30
+ - name: Setup Python
31
uses: actions/setup-python@v5
32
with:
33
python-version: "3.12"
0 commit comments