mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
13 lines
282 B
PowerShell
13 lines
282 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "Git" {
|
|
It "git is installed" {
|
|
"git --version" | Should -ReturnZeroExitCode
|
|
}
|
|
It "git lfs is installed" {
|
|
"git lfs version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|