diff --git a/.github/actions/module.ps1 b/.github/actions/module.ps1 index 7c63f8f..ec95797 100644 --- a/.github/actions/module.ps1 +++ b/.github/actions/module.ps1 @@ -1,3 +1,11 @@ function Show-Calendar { Write-Host "output - Show-Calendar" } + +function Show-Calendar2 { + Write-Host "output - Show-Calendar2" +} + +function Show-Calendar3 { + Write-Host "output - Show-Calendar3" +} \ No newline at end of file diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml index 9972f37..a5f4b10 100644 --- a/.github/workflows/shell.yml +++ b/.github/workflows/shell.yml @@ -32,3 +32,5 @@ jobs: run: | . ./module.ps1 Show-Calendar + Show-Calendar3 + Show-Calendar2