-
Notifications
You must be signed in to change notification settings - Fork 37
62 lines (55 loc) · 1.24 KB
/
ci.yml
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
57
58
59
60
61
62
name: Tests
on:
pull_request:
push:
branches:
- master
- develop
jobs:
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: pip install pre-commit==2.8.2
- name: Run pre-commit tests
run: pre-commit run --all-files
audit-grammar:
name: Audit the grammar files
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- run: make audit_grammars
audit-authors:
name: Audit the AUTHORS list
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- run: make audit_authors
audit-spelling:
name: Audit spelling in the specification
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- run: make audit_spelling