Skip to content

Commit c9c4183

Browse files
🩹[Patch] Move test module to PSModuleTest (#22)
- Move test module to `PSModuleTest`
1 parent f8a7d05 commit c9c4183

File tree

7 files changed

+13
-113
lines changed

7 files changed

+13
-113
lines changed

.github/workflows/Action-Test.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,26 @@ on: [pull_request]
77
jobs:
88
ActionTestSrc:
99
strategy:
10+
fail-fast: false
1011
matrix:
11-
path: [src, outputs/module]
12+
path: [tests/src, tests/outputs/modules]
1213
name: Action-Test - [${{ matrix.path }}]
1314
runs-on: ubuntu-latest
1415
steps:
1516
- name: Checkout repo
1617
uses: actions/checkout@v4
1718

19+
- name: Checkout tests -> PSModuleTest
20+
uses: actions/checkout@v4
21+
with:
22+
repository: PSModule/PSModuleTest
23+
path: tests
24+
25+
- name: Show files
26+
shell: pwsh
27+
run: |
28+
Get-ChildItem -Recurse | Select-Object -ExpandProperty FullName | Sort-Object
29+
1830
- name: Initialize environment
1931
uses: PSModule/Initialize-PSModule@main
2032

outputs/module/PSModule/PSModule.psd1

Lines changed: 0 additions & 27 deletions
This file was deleted.

outputs/module/PSModule/PSModule.psm1

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/PSModule/PSModule.psd1

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/PSModule/PSModule.psm1

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/PSModule/public/Test-PSModule.ps1

Lines changed: 0 additions & 18 deletions
This file was deleted.

tests/PSModule.Tests.ps1.ps1

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)