Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6c47063

Browse files
committed
Try gh-actions.
1 parent 0849bf1 commit 6c47063

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.github/workflows/tests.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- *.*
7+
pull_request:
8+
branches:
9+
- *.*
10+
11+
jobs:
12+
pospell:
13+
name: 'Orthographe'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
run: |
18+
sudo apt-get update
19+
sudo apt-get install -y hunspell hunspell-fr-comprehensive
20+
sudo pip install pospell
21+
pospell -p dict -l fr_FR *.po */*.po
22+
23+
powrap:
24+
name: 'Ensure wrapping consistency'
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v2
28+
run: |
29+
sudo pip install powrap
30+
powrap --check --quiet *.po */*.po
31+
32+
padpo:
33+
name: 'Grammaire'
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v2
37+
run: |
38+
sudo pip install padpo
39+
padpo -i *.po */*.po 2>&1 | grep -v -Ff padpo.ignore
40+
41+
sphinx:
42+
name: 'Build the doc'
43+
runs-on: ubuntu-latest
44+
steps:
45+
- uses: actions/checkout@v2
46+
run: make

0 commit comments

Comments
 (0)