mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
22 lines
471 B
PowerShell
22 lines
471 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$os = Get-OSVersion
|
|
|
|
Describe "Rust" {
|
|
Context "Rust" {
|
|
It "Rustup is installed" {
|
|
"rustup --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "Rustc is installed" {
|
|
"rustc --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
|
|
Context "Cargo" {
|
|
It "Cargo is installed" {
|
|
"cargo --version" | Should -ReturnZeroExitCode
|
|
}
|
|
}
|
|
}
|