Skip to content

Removed Connect code till I/we setup more options to connect #96

Removed Connect code till I/we setup more options to connect

Removed Connect code till I/we setup more options to connect #96

Workflow file for this run

name: Pester
on:
push:
branches: [ main ]
jobs:
test-pwsh:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Run Pester tests (pwsh)
run: |
Write-host $PSVersionTable.PSVersion.Major $PSVersionTable.PSRemotingProtocolVersion.Minor
Set-PSRepository psgallery -InstallationPolicy trusted
Install-Module -Name Pester -confirm:$false -Force
Invoke-Pester -Path ./tests
shell: pwsh