diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-07-14 03:42:15 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-07-14 04:29:03 -0400 |
commit | 61c9f114345c7fc458fe759480e08a7fb4609586 (patch) | |
tree | cb11b7e2fb27f0e087dc2b414ba5117df9258e26 /.github/workflows | |
parent | 861c6c63b6d5863e84441230a337c3082e3f104d (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.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: | |