Skip to content

Commit

Permalink
validating installation
Browse files Browse the repository at this point in the history
  • Loading branch information
JBrenesSimpat committed Oct 19, 2023
1 parent a626f08 commit 72beb14
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/start-VM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@ jobs:
working-directory: ./eng/
run: |
Install-Module -Name AzureRM -Force -AllowClobber
Import-Module AzureRM
Install-Module -Force -Scope Global -Name AzureRM
if (Get-IsWindows -and -not Get-InstalledModule | Where-Object -Property Name -eq "AzureRM") {
Import-Module -Force -Scope CurrentUser -Name AzureRM
}
Write-host "Starting VM."
. $env:GITHUB_WORKSPACE/eng/AzureTestLab.ps1
Start-AzureManagementSession
Expand Down

0 comments on commit 72beb14

Please sign in to comment.