We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4be7c52 + c967ab6 commit 964c939Copy full SHA for 964c939
1 file changed
.github/workflows/publish.yml
@@ -3,6 +3,7 @@ name: psgraph-publish
3
on:
4
release:
5
types: [published]
6
+
7
workflow_dispatch:
8
9
jobs:
@@ -88,10 +89,17 @@ jobs:
88
89
- name: Run .NET tests
90
run: dotnet test --verbosity normal
91
- - name: Run Pester tests
92
+ - name: Pester tests
93
shell: pwsh
94
run: |
95
Invoke-Pester -Path ./PsGraph.Pester.Tests/
96
97
+ - name: dotnet publish
98
+ run: dotnet publish -o "./PSQuickGraph"
99
100
+ - name: psgallery publish
101
+ run: |
102
+ Invoke-Pester -Path ./PsGraph.Pester.Tests/
103
104
- name: dotnet publish PowerShell module
105
0 commit comments