FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
PSScriptBuilder/.github/workflows/test.yml at main · PSScriptBuilder/PSScriptBuilder · GitHub
PSScriptBuilder
/
PSScriptBuilder
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
4
Code
Issues
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
PSScriptBuilder
/
.github
/
workflows
/
test.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
39 lines (35 loc) · 903 Bytes
Breadcrumbs
PSScriptBuilder
/
.github
/
workflows
/
test.yml
Copy path
File metadata and controls
39 lines (35 loc) · 903 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name
:
Pester Tests
on
:
workflow_call
:
jobs
:
test
:
name
:
Pester Tests (${{ matrix.label }})
runs-on
:
${{ matrix.os }}
permissions
:
contents
:
read
defaults
:
run
:
shell
:
${{ matrix.shell }}
strategy
:
fail-fast
:
false
matrix
:
include
:
-
os
:
windows-latest
shell
:
powershell
label
:
PS5.1
-
os
:
windows-latest
shell
:
pwsh
label
:
PS7-Windows
-
os
:
ubuntu-latest
shell
:
pwsh
label
:
PS7-Linux
-
os
:
macos-latest
shell
:
pwsh
label
:
PS7-macOS
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Install Pester
run
:
Install-Module -Name Pester -MinimumVersion 5.7.1 -Force -SkipPublisherCheck
-
name
:
Run Pester tests
run
:
./tests/Invoke-Tests.ps1 -Suite All
Back
|
FazBrowse Home
|
New Git URL