Skip to content

Commit c8b626b

Browse files
committed
Install and use clang-15
1 parent c8f4e54 commit c8b626b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
name: "Build/Test ${{ matrix.os }} ${{ matrix.compiler.name }} ${{ matrix.config }}"
2424
steps:
25-
- name: Setup Python
25+
- 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
2631
uses: actions/setup-python@v5
2732
with:
2833
python-version: "3.12"

0 commit comments

Comments
 (0)