diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-14 12:36:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 12:36:50 +0200 |
commit | c2ed367d4981506cae8f351a2a56db87b98d6d94 (patch) | |
tree | 3cb3af80275dc02170f19c1a2af8a23b4a6d084c | |
parent | 1bb66f04c8e08c1e2892c010d56c11b8d68069da (diff) | |
parent | 61c9f114345c7fc458fe759480e08a7fb4609586 (diff) |
Merge pull request #40365 from aaronfranke/black-path
Globally install Python libraries in GitHub Actions
-rw-r--r-- | .github/workflows/static_checks.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index bcba4c36d9..587f5a6ba6 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -12,7 +12,7 @@ jobs: run: | sudo apt-get update -qq sudo apt-get install -qq dos2unix recode clang-format - pip3 install --user black pygments + sudo pip3 install black pygments - name: File formatting checks (file_format.sh) run: | |