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