Skip to content

Commit a55e996

Browse files
Fix
1 parent 1df5707 commit a55e996

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/Process-PSModule.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ concurrency:
1919
permissions:
2020
contents: write
2121
pull-requests: write
22+
statuses: write
2223

2324
jobs:
2425
Process-PSModule:

.vscode/settings.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,17 @@
2222
"[yaml]": {
2323
"editor.defaultFormatter": "github.vscode-github-actions",
2424
"editor.insertSpaces": true,
25-
"editor.tabSize": 2,
25+
"editor.tabSize": 2
2626
},
2727
"[github-actions-workflow]": {
2828
"editor.defaultFormatter": "github.vscode-github-actions",
2929
"editor.insertSpaces": true,
3030
"editor.tabSize": 2
3131
},
32-
"editor.rulers": [0, 150],
32+
"editor.rulers": [
33+
0,
34+
150
35+
],
3336
"powershell.codeFormatting.autoCorrectAliases": true,
3437
"powershell.codeFormatting.newLineAfterCloseBrace": false,
3538
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline",

tests/PSModule.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Write-Verbose (Get-Module -Name 'PSModule' -ListAvailable | Out-String) -Verbose
66
}
77
It 'The module should be importable' {
8-
{ Import-Module -Name 'PSModule' } | Should -Not -Throw
8+
{ Import-Module -Name 'PSModule' -Verbose -Force } | Should -Not -Throw
99
}
1010
}
1111

0 commit comments

Comments
 (0)