-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (45 loc) · 1.27 KB
/
docs_checker.yml
File metadata and controls
57 lines (45 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Docs Checker
on:
pull_request:
branches:
- develop
push:
branches:
- develop
jobs:
build_check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v1
- name: Search Latex Files
run: find . -name "main.tex" | sed -e 's/\/main.tex//g' | sed -e 's/\.\///g' > filesList
- name: Compiles Latex Files
uses: Jatus93/Latex-multicompiler@v1.0
with:
path_to_list: filesList
artifact: true
- name: GulpeaseCheck
uses: Jatus93/GulpeaseAction@master
with:
directory: Documents/
- name: SpellCheck
uses: Jatus93/spellCheck@master
with:
directory: ./Documents
languages: "en_GB;en_US;italiano"
- name: Upload artifact PDF
uses: actions/upload-artifact@v2
with:
name: pdf-artifact
path: Documents/*.pdf # path/to/artifact
- name: Upload artifact Gulpease
uses: actions/upload-artifact@v2
with:
name: gulpease
path: Documents/Gulpease/ # path/to/artifact
- name: Upload artifact SpellCheck
uses: actions/upload-artifact@v2
with:
name: spell-check-errors
path: Documents/spellCheck/ # path/to/artifact