Skip to content

v1.2

v1.2 #37

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v1
- name: Run pester tests
shell: pwsh
run: |
Install-Module -Name Pester -Force
$res = Invoke-Pester -PassThru
# There are failing tests on the CI because of Write-Error
# Which is what git diff --numstat warnings do
if ($res.FailedCount -eq 3) {
exit 0
} else {
exit 1
}