Skip to content

Commit b51f7d6

Browse files
🩹 [Patch]: Update Action-Test names and script paths in TestWorkflow.yml and README.md
1 parent ebd9051 commit b51f7d6

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

‎.github/workflows/TestWorkflow.yml‎

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

58-
- name: Action-Test
58+
- name: Action-Test [.\tests\info.ps1]
5959
uses: ./
6060
with:
6161
Debug: true
6262
Verbose: true
6363
Script: .\tests\info.ps1
6464

65+
- name: Action-Test 2 [tests\info.ps1]
66+
uses: ./
67+
with:
68+
Debug: true
69+
Verbose: true
70+
Script: tests\info.ps1
6571

66-
- name: Action-Test 2
72+
- name: Action-Test 3 [tests/info.ps1]
73+
uses: ./
74+
with:
75+
Debug: true
76+
Verbose: true
77+
Script: tests/info.ps1
78+
79+
- name: Action-Test 4 [. '.\tests\info.ps1']
6780
uses: ./
6881
with:
6982
Debug: true
7083
Verbose: true
7184
Script: . '.\tests\info.ps1'
7285

86+
7387
ActionTestCommands:
7488
name: Commands + Outputs
7589
runs-on: ${{ inputs.runs-on }}

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Run script
6767
uses: PSModule/GitHub-Script@v1
6868
with:
69-
Script: "scripts/main.ps1"
69+
Script: scripts/main.ps1
7070
```
7171

7272
#### Example 2: Run a GitHub PowerShell script without a token

0 commit comments

Comments
 (0)