mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
* [macOS] Refactor Common.Helpers * Update readme file * Remove unnecessary double quotes --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
11 lines
261 B
PowerShell
11 lines
261 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
Describe "Git" {
|
|
It "git is installed" {
|
|
"git --version" | Should -ReturnZeroExitCode
|
|
}
|
|
It "git lfs is installed" {
|
|
"git lfs version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|