ManagementConnection - Added GetCimSession method #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sqlpackage test | |
on: [pull_request] | |
jobs: | |
build: | |
name: Module imports on all platforms | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install and cache PowerShell modules | |
uses: potatoqualitee/[email protected] | |
with: | |
modules-to-cache: dbatools.library:2023.1.29 | |
- name: Execute sqlpackage | |
shell: pwsh | |
run: | | |
return | |
Import-Module ./dbatools.psd1 -ErrorAction Stop | |
(Get-DbaManagementObject).LoadTemplate -ne $null | |
$libpath = Split-Path -Path (Get-Module dbatools*library).Path | |
if ($IsWindows) { | |
$sqlpackage = Join-DbaPath -Path $libpath -ChildPath lib, win, sqlpackage.exe | |
} | |
if ($IsMacOS) { | |
$sqlpackage = Join-DbaPath -Path $libpath -ChildPath lib, mac, sqlpackage | |
} | |
if ($IsLinux) { | |
$sqlpackage = Join-DbaPath -Path $libpath -ChildPath lib, sqlpackage | |
} | |
. $sqlpackage | Select-String "Specifies a name value pair" | Should -Not -BeNullorEmpty | |