We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b7d7f commit 93d3014Copy full SHA for 93d3014
.github/workflows/ci.yaml
@@ -10,14 +10,15 @@ jobs:
10
strategy:
11
matrix:
12
# @see https://stackoverflow.com/a/68940067
13
- compiler: [{cc: gcc, cxx: g++}]
+ compiler: [{cc: clang-15, cxx: clang++-15}, {cc: gcc, cxx: g++}]
14
std: [14, 17]
15
steps:
16
- uses: actions/checkout@v3
17
18
- name: Install dependencies
19
run: |
20
- sudo apt-get -y update && sudo apt-get -y install \
+ sudo apt-get -y update && sudo apt-get -y install \
21
+ clang-15 \
22
libboost-all-dev
23
24
- name: Configure
0 commit comments