mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* Revert "[Ubuntu] Add new git environment variable (#9899)" This reverts commitee7edb4f80. * Revert "[Windows] Add new git environment variable (#9898)" This reverts commit5113d251a8. * Revert "[macOS] Add new git environment variable (#9900)" This reverts commit5c60b0c2af.
13 lines
303 B
PowerShell
13 lines
303 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" -Skip:($os.IsBigSur) {
|
|
"git lfs version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|