Skip to content

Commit 99b12ee

Browse files
🩹 [CI]: Remove SkipTests input from Test workflows for simplification
1 parent 4149d41 commit 99b12ee

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

.github/workflows/Test-Module.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ permissions:
8383
jobs:
8484
Test-Module:
8585
name: Test-Module (${{ inputs.RunsOn }})
86-
if: ${{ !(contains(inputs.SkipTests, 'All') || contains(inputs.SkipTests, 'Module') || contains(inputs.SkipTests, inputs.OS)) }}
8786
runs-on: ${{ inputs.RunsOn }}
8887
steps:
8988
- name: Checkout repository
@@ -109,7 +108,6 @@ jobs:
109108

110109
Lint-Module:
111110
name: Lint-Module (${{ inputs.RunsOn }})
112-
if: ${{ !(contains(inputs.SkipTests, 'All') || contains(inputs.SkipTests, 'Module') || contains(inputs.SkipTests, inputs.OS)) }}
113111
runs-on: ${{ inputs.RunsOn }}
114112
steps:
115113
- name: Download module artifact

.github/workflows/Test-ModuleLocal.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ on:
4747
description: The path to the tests folder.
4848
required: false
4949
default: tests
50-
SkipTests:
51-
type: string
52-
description: Defines what types of tests to skip. Allowed values are 'All', 'SourceCode', 'Module', 'None', 'macOS', 'Windows', 'Linux'.
53-
required: false
54-
default: None
5550
Debug:
5651
type: boolean
5752
description: Enable debug output.
@@ -84,7 +79,6 @@ permissions:
8479
jobs:
8580
Test-ModuleLocal:
8681
name: Test-${{ inputs.TestName }} (${{ inputs.RunsOn }})
87-
if: ${{ !(contains(inputs.SkipTests, 'All') || contains(inputs.SkipTests, 'Module') || contains(inputs.SkipTests, inputs.OS)) }}
8882
runs-on: ${{ inputs.RunsOn }}
8983
steps:
9084
- name: Checkout Code

.github/workflows/Test-SourceCode.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ on:
1515
type: string
1616
description: The name of the module to process. Scripts default to the repository name if nothing is specified.
1717
required: false
18-
SkipTests:
19-
type: string
20-
description: Defines what types of tests to skip. Allowed values are 'All', 'SourceCode', 'Module', 'None', 'macOS', 'Windows', 'Linux'.
21-
required: false
22-
default: None
2318
Debug:
2419
type: boolean
2520
description: Enable debug output.
@@ -52,7 +47,6 @@ permissions:
5247
jobs:
5348
Test-SourceCode:
5449
name: Test-SourceCode (${{ inputs.RunsOn }})
55-
if: ${{ !(contains(inputs.SkipTests, 'All') || contains(inputs.SkipTests, 'SourceCode') || contains(inputs.SkipTests, inputs.OS)) }}
5650
runs-on: ${{ inputs.RunsOn }}
5751
steps:
5852
- name: Checkout Code
@@ -70,7 +64,6 @@ jobs:
7064

7165
Lint-SourceCode:
7266
name: Lint-SourceCode (${{ inputs.RunsOn }})
73-
if: ${{ !(contains(inputs.SkipTests, 'All') || contains(inputs.SkipTests, 'SourceCode') || contains(inputs.SkipTests, inputs.OS)) }}
7467
runs-on: ${{ inputs.RunsOn }}
7568
steps:
7669
- name: Checkout Code

0 commit comments

Comments
 (0)