Skip to content

Commit

Permalink
Adding the test module
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffpatton1971 committed Jul 18, 2024
1 parent 1117467 commit d3adeb8
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/BuildModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,28 @@ jobs:
path: 'Repo'

- name: Create PowerShell Manifest
uses: mod-posh/CreatePowerShellManifest@main # Replace with your repository details for the createpowershellmanifest action
uses: mod-posh/CreatePowerShellManifest@v0.0.1.0
with:
ModuleName: 'SpnLibrary'
Source: 'Repo' # Use the custom path here
Source: 'Repo'
Imports: 'public'
Debug: 'true'

- name: Create PowerShell Module
uses: mod-posh/CreatePowerShellModule@main # Replace with your repository details for the createpowershellmodule action
uses: mod-posh/CreatePowerShellModule@v0.0.1.0
with:
ModuleName: 'SpnLibrary'
Source: 'Repo' # Use the custom path here
Source: 'Repo'
Imports: 'public'
Debug: 'true'

- name: Test PowerShell Module
uses: mod-posh/TestpowerShellModule@main
with:
ModuleName: 'SpnLibrary'
Source: 'Repo'
Debug: 'true'

- name: Upload PowerShell Module
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d3adeb8

Please sign in to comment.