We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb633b0 commit 74cb3e0Copy full SHA for 74cb3e0
action.yml
@@ -237,8 +237,11 @@ runs:
237
- name: Install MacOS clang dependencies
238
if: runner.os == 'macOS'
239
shell: bash
240
- # continue-on-error: true
241
- run: brew install llvm@${{ inputs.version }}
+ continue-on-error: true
+ run: |
242
+ brew install llvm@${{ inputs.version }}
243
+ ln -s "$(brew --prefix llvm@15)/bin/clang-format" "/usr/local/bin/clang-format-15"
244
+ ln -s "$(brew --prefix llvm@15)/bin/clang-tidy" "/usr/local/bin/clang-tidy-15"
245
246
- name: Setup python venv (Unix)
247
if: runner.os == 'Linux' || runner.os == 'macOS'
0 commit comments