mirror of
https://github.com/actions/go-versions
synced 2024-11-09 23:22:39 +00:00
Update Go.Tests.ps1
This commit is contained in:
parent
73f7463539
commit
638c3d6a70
1 changed files with 3 additions and 1 deletions
|
@ -44,6 +44,7 @@ Describe "Go" {
|
||||||
}
|
}
|
||||||
|
|
||||||
It "cached version is used without downloading" {
|
It "cached version is used without downloading" {
|
||||||
|
Write-Host "Runner Type: $env:RUNNER_TYPE"
|
||||||
if ($env:RUNNER_TYPE -eq "GitHub") {
|
if ($env:RUNNER_TYPE -eq "GitHub") {
|
||||||
# Analyze output of previous steps to check if Go was consumed from cache or downloaded
|
# Analyze output of previous steps to check if Go was consumed from cache or downloaded
|
||||||
$useGoLogFile = Get-UseGoLogs
|
$useGoLogFile = Get-UseGoLogs
|
||||||
|
@ -58,7 +59,8 @@ Describe "Go" {
|
||||||
# Check if the installed version of Go is the expected version
|
# Check if the installed version of Go is the expected version
|
||||||
$installedVersion = $goVersion -split " " | Select-Object -Index 2
|
$installedVersion = $goVersion -split " " | Select-Object -Index 2
|
||||||
$installedVersion = $installedVersion -replace "go", "" -replace "v", ""
|
$installedVersion = $installedVersion -replace "go", "" -replace "v", ""
|
||||||
$installedVersion | Should -BeLike "$env:VERSION*"
|
$expectedVersion = $env:VERSION -replace ".0", ""
|
||||||
|
$installedVersion | Should -BeLike "$expectedVersion*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue