-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (36 loc) · 781 Bytes
/
ci.yml
File metadata and controls
38 lines (36 loc) · 781 Bytes
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
name: "CI"
on:
push:
branches:
- master
- NGSI-v2
- NGSI-LD
pull_request:
branches:
- master
- NGSI-v2
- NGSI-LD
workflow_dispatch:
jobs:
test-modules:
name: Test Script
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@master
with:
persist-credentials: false
fetch-depth: 0
submodules: recursive
- name: Build Images
run: |
./services create test || true
- name: Run Orion
run: |
./services orion test && ./services stop test
- name: Run Stellio
run: |
./services stellio test && ./services stop test
- name: Run Scorpio
run: |
./services scorpio test && ./services stop test