We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697b774 commit 6270612Copy full SHA for 6270612
1 file changed
.github/workflows/Tests.yml
@@ -20,8 +20,10 @@ jobs:
20
- name: 📥 Checkout
21
uses: actions/checkout@v4
22
23
- - name: 📦 Install ModuleTools module form PSGallery
24
- run: Install-PSResource -Repository PSGallery -Name ModuleTools -TrustRepository
+ - name: 📦 Install required modules from PSGallery
+ run: |
25
+ Install-PSResource -Repository PSGallery -Name ModuleTools -TrustRepository
26
+ Install-PSResource -Repository PSGallery -Name Microsoft.PowerShell.PlatyPS -TrustRepository
27
28
- name: 🏗️ Build Module
29
run: Invoke-MTBuild -Verbose
@@ -36,4 +38,4 @@ jobs:
36
38
$Report = New-MDHeader -Text "Output Files 📁" -Level 2
37
39
$Report += Get-ChildItem -Path ./dist -Recurse | Select-Object Name, Directory | New-MDTable
40
echo "$Report" >> $env:GITHUB_STEP_SUMMARY
- echo "$Report"
41
+ echo "$Report"
0 commit comments