File tree 1 file changed +46
-0
lines changed
1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments