Skip to content

Commit

Permalink
CI: List commands exported by Pog
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKafka committed Feb 9, 2025
1 parent 3b89a92 commit 70abef0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,10 @@ jobs:
run: |
Write-Host "PowerShell v$($PSVersionTable.PSVersion)"
$InformationPreference = "Continue"
Import-Module ./app/Pog -Verbose
Import-Module ./app/Pog
Write-Host "Exported cmdlets:"
(Get-Module Pog).ExportedCommands.Keys | % {Write-Host "- $_"}
Write-Host "Available packages: $(@(Find-Pog -AllVersions).Count)"
pog fzf, zstd, Jujutsu
Expand All @@ -178,7 +181,10 @@ jobs:
run: |
Write-Host "PowerShell v$($PSVersionTable.PSVersion)"
$InformationPreference = "Continue"
Import-Module ./app/Pog -Verbose
Import-Module ./app/Pog
Write-Host "Exported cmdlets:"
(Get-Module Pog).ExportedCommands.Keys | % {Write-Host "- $_"}
Write-Host "Available packages: $(@(Find-Pog -AllVersions).Count)"
pog fzf, zstd, Jujutsu
Expand Down

0 comments on commit 70abef0

Please sign in to comment.