Add docs site #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pester Test | |
on: pull_request | |
jobs: | |
pester-test-windows: | |
name: Windows Latest | |
runs-on: windows-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Run tests | |
shell: pwsh | |
run: | | |
$ErrorActionPreference = "Stop" | |
& ./PwshPaint/Build.ps1 | |
& ./PwshPaint.Tests/Run.ps1 | |
pester-test-linux: | |
name: Linux Latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Run tests | |
shell: pwsh | |
run: | | |
$ErrorActionPreference = "Stop" | |
& ./PwshPaint/Build.ps1 | |
& ./PwshPaint.Tests/Run.ps1 |