mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
1891ea7966
* Remove All Trailing Whitespace Characters in '.ps1' Files * Remove All Trailing Whitespace Characters in '.json' Files * Remove All Trailing Whitespace Characters in '.yaml' Files * Remove All Trailing Whitespace Characters in Different Files * Remove Even More Trailing Whitespace Characters
40 lines
942 B
YAML
40 lines
942 B
YAML
name: Unit Tests
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
lint:
|
|
name: PS Script Analyzer
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: lint
|
|
uses: devblackops/github-action-psscriptanalyzer@master
|
|
with:
|
|
sendComment: false
|
|
settingsPath: lint/PSScriptAnalyser.ps1
|
|
failOnErrors: false
|
|
failOnWarnings: false
|
|
failOnInfos: false
|
|
test:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Pester
|
|
run: |
|
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
|
Install-Module -Name Pester -Force -SkipPublisherCheck -AllowClobber
|
|
shell: pwsh
|
|
|
|
- name: Run Pester tests
|
|
run: |
|
|
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
|
|
Invoke-Pester -Path 'pester/*.Tests.ps1' -Output Detailed
|
|
|
|
shell: pwsh
|
|
env:
|
|
TEMP: ${{ runner.temp }} |