Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/linters/.powershell-psscriptanalyzer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#)
#IncludeDefaultRules=${true}
ExcludeRules = @(
'PSMissingModuleManifestField'
'PSAvoidUsingWriteHost'
)
#IncludeRules = @(
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Auto-Release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Auto-Release

run-name: "${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }} by @${{ github.actor }}"
run-name: "Auto-Release - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on:
pull_request_target:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Linter

run-name: "${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }} by @${{ github.actor }}"
run-name: "Linter - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on: [pull_request]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Workflow-Test-Default.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Workflow-Test [Default]

run-name: "${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }} by @${{ github.actor }}"
run-name: "Workflow-Test [Default] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on: [pull_request]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Workflow-Test [UnnamedFolder]
name: Workflow-Test [WithManifest]

run-name: "${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }} by @${{ github.actor }}"
run-name: "Workflow-Test [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on: [pull_request]

Expand All @@ -14,12 +14,12 @@ permissions:
statuses: write

jobs:
WorkflowTestUnnamedFolder:
WorkflowTestWithManifest:
uses: ./.github/workflows/workflow.yml
secrets: inherit
with:
Name: PSModuleTest
Path: tests/srcNo
Path: tests/srcWithManifest
ModulesOutputPath: tests/outputs/modules
DocsOutputPath: tests/outputs/docs
TestProcess: true
5 changes: 0 additions & 5 deletions tests/src/PSModuleTest/PSModuleTest.psd1

This file was deleted.

73 changes: 0 additions & 73 deletions tests/src/PSModuleTest/PSModuleTest.psm1

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ function New-PSModuleTest {
Test-PSModule -Name 'World'

"Hello, World!"

.NOTES
Testing if a module can have a [Markdown based link](https://example.com).
!"#¤%&/()=?`´^¨*'-_+§½{[]}<>|@£$€¥¢:;.,"
\[This is a test\]
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
'PSUseShouldProcessForStateChangingFunctions', '', Scope = 'Function',
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions tests/srcWithManifest/manifest.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@{
Author = 'Author'
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ function New-PSModuleTest {
Test-PSModule -Name 'World'

"Hello, World!"

.NOTES
Testing if a module can have a [Markdown based link](https://example.com).
!"#¤%&/()=?`´^¨*'-_+§½{[]}<>|@£$€¥¢:;.,"
\[This is a test\]
#>
[Diagnostics.CodeAnalysis.SuppressMessageAttribute(
'PSUseShouldProcessForStateChangingFunctions', '', Scope = 'Function',
Expand Down