summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2020-07-14 03:42:15 -0400
committerAaron Franke <arnfranke@yahoo.com>2020-07-14 04:29:03 -0400
commit61c9f114345c7fc458fe759480e08a7fb4609586 (patch)
treecb11b7e2fb27f0e087dc2b414ba5117df9258e26 /.github/workflows
parent861c6c63b6d5863e84441230a337c3082e3f104d (diff)
Globally install Python libraries in GitHub Actions
Otherwise it uses ~/.local/bin which GitHub doesn't include in PATH
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/static_checks.yml2
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: |