We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74cb3e0 commit ac20594Copy full SHA for ac20594
action.yml
@@ -240,8 +240,8 @@ runs:
240
continue-on-error: true
241
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"
+ ln -s "$(brew --prefix llvm@${{ inputs.version }})/bin/clang-format" "/usr/local/bin/clang-format-${{ inputs.version }}"
+ 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'
0 commit comments