Governance docs per CE PR 1226 (#53) #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************************** | |
# 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 |