diff options
| author | Jeff Epler <jepler@gmail.com> | 2021-01-08 18:21:27 -0600 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2021-01-08 18:21:27 -0600 |
| commit | 96dd3d3fef30ce632312ba592b84e2b9f5d84399 (patch) | |
| tree | c6e08e12c6452a67aaea4353e5c14316c3aeba6c /.github/workflows | |
| parent | 1dda33dc418cae1a0047df0241762ebdb3d87e8a (diff) | |
ensure gettext program is available to pre-commit
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pre-commit.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8caf56d26..20c76c124 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,6 +15,8 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 + - name: Install deps + run: sudo apt-get update && sudo apt-get install -y gettext - name: set PY run: echo >>$GITHUB_ENV PY="$(python -c 'import hashlib, sys;print(hashlib.sha256(sys.version.encode()+sys.executable.encode()).hexdigest())')" - uses: actions/cache@v1 |
