From 9f1107776849af857ec33eba8e5fd362d19bba2a Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Mon, 21 Jun 2021 16:37:24 -0700 Subject: [PATCH] Install pylint explicitly in custom linter action Change-Id: I61891ef6682af209ee94b187b247f5b779e83c8a --- .github/workflows/custom-actions/lint-packager/action.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/custom-actions/lint-packager/action.yaml b/.github/workflows/custom-actions/lint-packager/action.yaml index e506b427d69..d0365b6d475 100644 --- a/.github/workflows/custom-actions/lint-packager/action.yaml +++ b/.github/workflows/custom-actions/lint-packager/action.yaml @@ -17,6 +17,9 @@ runs: sudo install -m 755 git-clang-format /usr/local/bin/git-clang-format rm git-clang-format echo "::endgroup::" + echo "::group::Installing pylint" + python3 -m pip install --upgrade pylint + echo "::endgroup::" echo "::group::Check clang-format for C++ sources" # NOTE: --binary forces use of global clang-format (which works) instead # of depot_tools clang-format (which doesn't).