Skip to content

Commit cac043b

Browse files
authored
Merge pull request #71 from altendky/gha
[WIP] GitHub Actions workflow
2 parents 274cb96 + 1aac359 commit cac043b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- development
8+
pull_request:
9+
branches:
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+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: actions/checkout@v2
29+
- name: Install dependencies
30+
run: |
31+
sudo apt-get update --yes
32+
sudo apt-get install --yes python3-jsonschema
33+
- name: Check
34+
run: make -C json

0 commit comments

Comments
 (0)