Skip to content

Commit e952c04

Browse files
🩹 [Patch]: Remove initialization step and dependency on Utilities from workflows
1 parent 3f9d3e8 commit e952c04

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

‎.github/workflows/Action-Test.yml‎

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
- name: Checkout repo
2626
uses: actions/checkout@v4
2727

28-
- name: Initialize environment
29-
uses: PSModule/Initialize-PSModule@v1
30-
3128
- name: Action-Test
3229
uses: ./
3330
with:
@@ -42,9 +39,6 @@ jobs:
4239
- name: Checkout repo
4340
uses: actions/checkout@v4
4441

45-
- name: Initialize environment
46-
uses: PSModule/Initialize-PSModule@v1
47-
4842
- name: Action-Test
4943
uses: ./
5044
with:
@@ -59,9 +53,6 @@ jobs:
5953
- name: Checkout repo
6054
uses: actions/checkout@v4
6155

62-
- name: Initialize environment
63-
uses: PSModule/Initialize-PSModule@v1
64-
6556
- name: Action-Test
6657
uses: ./
6758
with:

‎scripts/main.ps1‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
[CmdletBinding()]
66
param()
77

8-
#Requires -Modules Utilities
9-
108
$path = (Join-Path -Path $PSScriptRoot -ChildPath 'helpers') | Get-Item | Resolve-Path -Relative
119
LogGroup "Loading helper scripts from [$path]" {
1210
Get-ChildItem -Path $path -Filter '*.ps1' -Recurse | Resolve-Path -Relative | ForEach-Object {

0 commit comments

Comments
 (0)