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 5879ece commit 0155b5fCopy full SHA for 0155b5f
action.yml
@@ -88,6 +88,10 @@ runs:
88
- name: Install action dependencies
89
shell: bash
90
run: |
91
+ if [[ "${{runner.os}}" == "Linux" ]]; then
92
+ sudo apt-get update
93
+ sudo apt-get install clang-format-${{ inputs.version }} clang-tidy-${{ inputs.version }} || true
94
+ fi
95
if [[ "${{runner.os}}" == "macOS" ]];then
96
python3 -m venv '${{ github.action_path }}/venv'
97
source '${{ github.action_path }}/venv/bin/activate'
0 commit comments