File tree Expand file tree Collapse file tree 2 files changed +62
-0
lines changed
Expand file tree Collapse file tree 2 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 1+ # **************************************************************************
2+ # Copyright (c) Cloud Native Foundation.
3+ # SPDX-License-Identifier: Apache-2.0
4+ # **************************************************************************
5+
6+ name : Integration Tests
7+
8+ on :
9+ push :
10+ branches : ["main"]
11+
12+ pull_request :
13+ branches : ["main"]
14+
15+ jobs :
16+ integration-tests :
17+ name : Run Integration Tests
18+ strategy :
19+ matrix :
20+ platform : ["ubuntu-latest", "windows-latest"]
21+
22+ runs-on : ${{ matrix.platform }}
23+ timeout-minutes : 10
24+
25+ steps :
26+ - name : Check out code
27+ uses : actions/checkout@v2
28+
29+ - name : Run Tests
30+ shell : pwsh
31+ run : ./build.ps1 -TestsType integration -ExitProcess
Original file line number Diff line number Diff line change 1+ # **************************************************************************
2+ # Copyright (c) Cloud Native Foundation.
3+ # SPDX-License-Identifier: Apache-2.0
4+ # **************************************************************************
5+
6+ name : Unit Tests
7+
8+ on :
9+ push :
10+ branches : ["main"]
11+
12+ pull_request :
13+ branches : ["main"]
14+
15+ jobs :
16+ unit-tests :
17+ name : Run Unit Tests
18+ strategy :
19+ matrix :
20+ platform : ["ubuntu-latest", "windows-latest"]
21+
22+ runs-on : ${{ matrix.platform }}
23+ timeout-minutes : 10
24+
25+ steps :
26+ - name : Check out code
27+ uses : actions/checkout@v2
28+
29+ - name : Run Tests
30+ shell : pwsh
31+ run : ./build.ps1 -TestsType unit -ExitProcess
You can’t perform that action at this time.
0 commit comments