mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
25 lines
513 B
YAML
25 lines
513 B
YAML
# CI Validation
|
|
|
|
name: PowerShell Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'helpers/software-report-base/**'
|
|
|
|
jobs:
|
|
powershell-tests:
|
|
name: PowerShell tests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Software Report module tests
|
|
shell: pwsh
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
Invoke-Pester -Output Detailed "helpers/software-report-base/tests"
|
|
|