Skip to content

Commit 93d3014

Browse files
authored
Add clang to CI (#29)
1 parent 74b7d7f commit 93d3014

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ jobs:
1010
strategy:
1111
matrix:
1212
# @see https://stackoverflow.com/a/68940067
13-
compiler: [{cc: gcc, cxx: g++}]
13+
compiler: [{cc: clang-15, cxx: clang++-15}, {cc: gcc, cxx: g++}]
1414
std: [14, 17]
1515
steps:
1616
- uses: actions/checkout@v3
1717

1818
- name: Install dependencies
1919
run: |
20-
sudo apt-get -y update && sudo apt-get -y install \
20+
sudo apt-get -y update && sudo apt-get -y install \
21+
clang-15 \
2122
libboost-all-dev
2223
2324
- name: Configure

0 commit comments

Comments
 (0)