Merge pull request #24 from embano1/issue-6

This commit is contained in:
Michael Gasch 2021-04-27 18:21:02 +02:00 committed by GitHub
commit 062d7add6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,31 @@
# **************************************************************************
# Copyright (c) Cloud Native Foundation.
# SPDX-License-Identifier: Apache-2.0
# **************************************************************************
name: Integration Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
integration-tests:
name: Run Integration Tests
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.platform }}
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run Tests
shell: pwsh
run: ./build.ps1 -TestsType integration -ExitProcess

View File

@ -0,0 +1,31 @@
# **************************************************************************
# Copyright (c) Cloud Native Foundation.
# SPDX-License-Identifier: Apache-2.0
# **************************************************************************
name: Unit Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
unit-tests:
name: Run Unit Tests
strategy:
matrix:
platform: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.platform }}
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Run Tests
shell: pwsh
run: ./build.ps1 -TestsType unit -ExitProcess