Update Go.Tests.ps1

This commit is contained in:
aparnajyothi-y 2024-06-28 17:35:33 +05:30 committed by GitHub
parent 73f7463539
commit 638c3d6a70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,6 +44,7 @@ Describe "Go" {
}
It "cached version is used without downloading" {
Write-Host "Runner Type: $env:RUNNER_TYPE"
if ($env:RUNNER_TYPE -eq "GitHub") {
# Analyze output of previous steps to check if Go was consumed from cache or downloaded
$useGoLogFile = Get-UseGoLogs
@ -58,7 +59,8 @@ Describe "Go" {
# Check if the installed version of Go is the expected version
$installedVersion = $goVersion -split " " | Select-Object -Index 2
$installedVersion = $installedVersion -replace "go", "" -replace "v", ""
$installedVersion | Should -BeLike "$env:VERSION*"
$expectedVersion = $env:VERSION -replace ".0", ""
$installedVersion | Should -BeLike "$expectedVersion*"
}
}