8000 Try gh-actions. by JulienPalard · Pull Request #1474 · python/python-docs-fr · GitHub
[go: up one dir, main page]

Skip to content

Try gh-actions. #1474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Nov 23, 2020
Merged
Prev Previous commit
Next Next commit
Missing dependency
  • Loading branch information
JulienPalard committed Nov 22, 2020
commit 0c91fe540d789facb48e76ff89c5317e860b2b72
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install powrap
run: sudo python3 -m pip install powrap
run: |
sudo apt-get update
sudo apt-get install gettext
sudo python3 -m pip install powrap
- name: Run powrap
run: powrap --check --quiet *.po */*.po

Expand Down
0