Skip to content

Refactor PocofScreen. #38

Refactor PocofScreen.

Refactor PocofScreen. #38

Workflow file for this run

name: Build and Test on Pull Request
on:
pull_request:
branches: ["main"]
jobs:
test:
strategy:
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: ./global.json
- name: Install modules from PSGallery
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module Psake,Pester,PSScriptAnalyzer -Scope CurrentUser -Force
- name: Execute All Tests
shell: pwsh
run: Invoke-Psake -taskList TestAll