Skip to content

Hotfix 2

Hotfix 2 #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
PSScriptAnalyzer:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install PSScriptAnalyzer
shell: pwsh
run: |
Install-Module -Name PSScriptAnalyzer -Force
- name: Run PSScriptAnalyzer
shell: pwsh
run: |
Invoke-ScriptAnalyzer -Path ./ -Recurse -Severity Error -EnableExit