Update resource type open data for Aug 2024 #425
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: 'PowerShell Tests' | |
on: | |
pull_request: | |
paths: | |
- 'src/powershell/**' | |
jobs: | |
run_pester_tests: | |
name: Pester | |
runs-on: Windows-latest | |
steps: | |
- name: Install and cache PowerShell modules | |
uses: potatoqualitee/[email protected] | |
with: | |
modules-to-cache: InvokeBuild, PSScriptAnalyzer, Pester, Az.Accounts, Az.Resources | |
shell: pwsh | |
- uses: actions/checkout@v3 | |
- name: Run Tests | |
shell: pwsh | |
run: .build/start.ps1 -Task Test.PowerShell.All | |