1
0
Fork 0
mirror of https://code.forgejo.org/actions/go-versions synced 2025-07-07 17:15:59 +02:00

Remove Create-ArtifactDirectories function

This commit is contained in:
Nikita Bykov 2020-08-24 17:59:30 +03:00
parent 8daa2b0ac5
commit e3b3c821ce
3 changed files with 14 additions and 21 deletions

View file

@ -24,7 +24,7 @@ Describe "Go" {
}
It "version is correct" {
$versionOutput = '$(go version) -match "go(?<version>\d+\.\d+\.\d+)" | Out-Null', ' $Matches.Version' | Invoke-Expression
$versionOutput = '$(go version) -match "go(?<version>\d+\.\d+\.\d+)" | Out-Null', '$Matches.Version' | Invoke-Expression
$versionOutput | Should -Match $Version
}