Skip to content

Commit 062d7ad

Browse files
author
Michael Gasch
authored
Merge pull request #24 from embano1/issue-6
2 parents 94759a4 + 0bd4192 commit 062d7ad

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

0 commit comments

Comments
 (0)