We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 274cb96 + 1aac359 commit cac043bCopy full SHA for cac043b
.github/workflows/ci.yml
@@ -0,0 +1,34 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - development
8
+ pull_request:
9
10
+ - "*"
11
12
+jobs:
13
+ xml:
14
+ name: Check XML
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Install dependencies
19
+ run: |
20
+ sudo apt-get update --yes
21
+ sudo apt-get install --yes libxml2-utils
22
+ - name: Check
23
+ run: make -C smdx
24
+ json:
25
+ name: Check JSON
26
27
28
29
30
31
32
+ sudo apt-get install --yes python3-jsonschema
33
34
+ run: make -C json
0 commit comments