File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 75
75
required : false
76
76
default : true
77
77
78
+ # Whether to lint with `--verbose`. Defaults to false.
79
+ verbose :
80
+ type : boolean
81
+ required : false
82
+ default : false
83
+
78
84
# Whether to additionally build with Swift 6. Defaults to false.
79
85
supports_swift6 :
80
86
type : boolean
@@ -151,6 +157,7 @@ jobs:
151
157
command : |
152
158
scripts/pod_lib_lint.rb ${{ inputs.product }}.podspec --platforms=${{ matrix.platform }} \
153
159
${{ inputs.allow_warnings == true && '--allow-warnings' || '' }} \
160
+ ${{ inputs.verbose == true && '--verbose' || '' }} \
154
161
${{ inputs.analyze == false && '--no-analyze' || '' }} \
155
162
${{ inputs.test_specs != '' && format('--test-specs={0}', inputs.test_specs) || '' }} \
156
163
${{ (contains(inputs.buildonly_platforms, matrix.platform) || contains(inputs.buildonly_platforms, 'all')) && '--skip-tests' || '' }}
You can’t perform that action at this time.
0 commit comments