We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfec7dc commit b5b2fbdCopy full SHA for b5b2fbd
1 file changed
.github/workflows/ci.yml
@@ -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
11
12
13
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
31
+ ./services start && ./services stop
0 commit comments