Skip to content

SSH signing check

SSH signing check #48

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install Pester v5
shell: pwsh
run: |
Install-Module Pester -Force -Scope CurrentUser -SkipPublisherCheck
- name: Run Pester smoke tests
shell: pwsh
run: |
# Only run MyModule.Tests.ps1, skip any other test files
Invoke-Pester -Path .\.github\tests\MyModule.Tests.ps1