New version: Microsoft.PowerBI version 2.124.1805.0 #1
Workflow file for this run
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
name: Winget PR Test | |
on: | |
pull_request: | |
paths: | |
- 'manifests/**' | |
jobs: | |
test-winget-install: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up PowerShell | |
uses: actions/setup-powershell@v1 | |
- name: Run winget test script | |
run: | | |
$modifiedManifests = git diff --name-only origin/main...HEAD -- 'manifests/**/*.yaml' | |
foreach ($manifest in $modifiedManifests) { | |
.\scripts\validation.ps1 -ManifestPath $manifest | |
} |