Skip to content

Set-VmsCameraStream improvements #70

Set-VmsCameraStream improvements

Set-VmsCameraStream improvements #70

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- 'main'
paths-ignore:
- '.github/workflows/Docs.yml'
- '.github/workflows/license-header-check.yml'
- '.github/workflows/publish.yml'
- '.github/workflows/update-release-draft.yml'
- '*.md'
- 'azure*.yml'
- 'docs/**'
- 'mkdocs*.yml'
- 'mkdocs/**'
- 'tests/**'
permissions:
contents: read
issues: read
checks: write
pull-requests: write
jobs:
BuildModule:
name: Build module
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
key: ${{ github.ref }}
path: .cache
- name: Build and Test
id: runtests
env:
VAULT_PASSWORD_DEFAULT: ${{ secrets.SecretStorePassword }}
shell: powershell
run: |
.\build.ps1 -Task RunTests -Bootstrap -SkipIsolation -ErrorAction Stop
"BHBuildOutput=$($env:BHBuildOutput)" | Add-Content "$($env:GITHUB_OUTPUT)"
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
if: always()
continue-on-error: true
with:
files: "tests/out/*.xml"
- name: Upload as artifact
uses: actions/upload-artifact@v4
with:
name: MilestonePSTools
path: ${{ steps.runtests.outputs.BHBuildOutput }}