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 96ffabe commit c390110Copy full SHA for c390110
.github/workflows/test.yml
@@ -18,8 +18,12 @@ jobs:
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v2
21
+ - name: install Clang
22
+ # Note: picking LLVM 15 because that's the one currently included in
23
+ # macos-latest. This probably needs an update in the future.
24
+ run: brew install llvm@15
25
- name: Run tests
- run: make test CLANG=$(brew --prefix llvm)/bin/clang
26
+ run: make test CLANG=$(brew --prefix llvm@15)/bin/clang
27
Test-Windows:
28
runs-on: windows-latest
29
0 commit comments