Skip to content

Commit b5b2fbd

Browse files
committed
Add CI GitHub Action
1 parent cfec7dc commit b5b2fbd

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
name: "CI"
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- NGSI-v2
8+
- NGSI-LD
9+
pull_request:
10+
branches:
11+
- master
12+
- NGSI-v2
13+
- NGSI-LD
14+
workflow_dispatch:
15+
16+
jobs:
17+
test-modules:
18+
name: Test Script
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@master
22+
with:
23+
persist-credentials: false
24+
fetch-depth: 0
25+
submodules: recursive
26+
- name: Build Images
27+
run: |
28+
./services create || true
29+
- name: Run Script
30+
run: |
31+
./services start && ./services stop

0 commit comments

Comments
 (0)