File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 99
99
Version : ${{ inputs.Version }}
100
100
WorkingDirectory : ${{ inputs.WorkingDirectory }}
101
101
102
+ Lint-SourceCode :
103
+ if : ${{ needs.Get-Settings.outputs.SourceCodeTestSuites != '[]' }}
104
+ needs :
105
+ - Get-Settings
106
+ strategy :
107
+ fail-fast : false
108
+ matrix :
109
+ include : ${{ fromJson(needs.Get-Settings.outputs.SourceCodeTestSuites) }}
110
+ uses : ./.github/workflows/Lint-SourceCode.yml
111
+ with :
112
+ RunsOn : ${{ matrix.RunsOn }}
113
+ OS : ${{ matrix.OSName }}
114
+ Name : ${{ fromJson(needs.Get-Settings.outputs.Settings).Name }}
115
+ Debug : ${{ inputs.Debug }}
116
+ Prerelease : ${{ inputs.Prerelease }}
117
+ Verbose : ${{ inputs.Verbose }}
118
+ Version : ${{ inputs.Version }}
119
+ WorkingDirectory : ${{ inputs.WorkingDirectory }}
120
+
102
121
Build-Module :
103
122
if : ${{ fromJson(needs.Get-Settings.outputs.Settings).Build.Module.Skip != true }}
104
123
uses : ./.github/workflows/Build-Module.yml
@@ -175,6 +194,7 @@ jobs:
175
194
needs :
176
195
- Get-Settings
177
196
- Test-SourceCode
197
+ - Lint-SourceCode
178
198
- Test-Module
179
199
- Test-ModuleLocal
180
200
uses : ./.github/workflows/Get-TestResults.yml
You can’t perform that action at this time.
0 commit comments