8000 Missing dependency · python/python-docs-fr@0c91fe5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c91fe5

Browse files
committed
Missing dependency
1 parent 5032a6c commit 0c91fe5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v2
3232
- name: Install powrap
33-
run: sudo python3 -m pip install powrap
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install gettext
36+
sudo python3 -m pip install powrap
3437
- name: Run powrap
3538
run: powrap --check --quiet *.po */*.po
3639

0 commit comments

Comments
 (0)
0