From 61c9f114345c7fc458fe759480e08a7fb4609586 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Tue, 14 Jul 2020 03:42:15 -0400 Subject: Globally install Python libraries in GitHub Actions Otherwise it uses ~/.local/bin which GitHub doesn't include in PATH --- .github/workflows/static_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: | -- cgit v1.2.3