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< 8000 /a> to your account

Merged
merged 17 commits into from
Nov 23, 2020
Merged
Prev Previous commit
Next Next commit
mêh
  • Loading branch information
JulienPalard committed Nov 22, 2020
commit cf51edc3d14d15edb91e99700ffb03fa0c903a07
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
---

name: Tests

on:
Expand All @@ -14,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
run: |
- run: |
sudo apt-get update
sudo apt-get install -y hunspell hunspell-fr-comprehensive
sudo pip install pospell
Expand All @@ -25,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
run: |
- run: |
sudo pip install powrap
powrap --check --quiet *.po */*.po

Expand All @@ -34,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
run: |
- run: |
sudo pip install padpo
padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore

Expand All @@ -43,4 +45,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
run: make
- run: make
0