Skip to content

Updated Admin URL - doesn't like https #60

Updated Admin URL - doesn't like https

Updated Admin URL - doesn't like https #60

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@v3
- 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