Skip to content

Commit 2097857

Browse files
🩹 [Patch]: Standardize script path format and add additional Action-Test entries in TestWorkflow.yml
1 parent c15f322 commit 2097857

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

‎.github/workflows/TestWorkflow.yml‎

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,37 +55,50 @@ jobs:
5555
- name: Checkout repo
5656
uses: actions/checkout@v4
5757

58-
- name: Action-Test [.\tests\info.ps1]
58+
- name: Action-Test [tests\info.ps1]
5959
if: success() || failure()
6060
uses: ./
6161
with:
6262
Debug: true
6363
Verbose: true
64-
Script: .\tests\info.ps1
65-
66-
- name: Action-Test 2 [tests\info.ps1]
64+
Script: tests\info.ps1
65+
- name: Action-Test [tests/info.ps1]
6766
if: success() || failure()
6867
uses: ./
6968
with:
7069
Debug: true
7170
Verbose: true
72-
Script: tests\info.ps1
71+
Script: tests/info.ps1
7372

74-
- name: Action-Test 3 [tests/info.ps1]
73+
- name: Action-Test [.\tests\info.ps1]
7574
if: success() || failure()
7675
uses: ./
7776
with:
7877
Debug: true
7978
Verbose: true
80-
Script: tests/info.ps1
79+
Script: .\tests\info.ps1
80+
- name: Action-Test [./tests/info.ps1]
81+
if: success() || failure()
82+
uses: ./
83+
with:
84+
Debug: true
85+
Verbose: true
86+
Script: ./tests/info.ps1
8187

82-
- name: Action-Test 4 [. '.\tests\info.ps1']
88+
- name: Action-Test [. '.\tests\info.ps1']
8389
if: success() || failure()
8490
uses: ./
8591
with:
8692
Debug: true
8793
Verbose: true
8894
Script: . '.\tests\info.ps1'
95+
- name: Action-Test [. './tests/info.ps1']
96+
if: success() || failure()
97+
uses: ./
98+
with:
99+
Debug: true
100+
Verbose: true
101+
Script: . './tests/info.ps1'
89102

90103
ActionTestCommands:
91104
name: Commands + Outputs

0 commit comments

Comments
 (0)