From ae57a2f63b234adf524777a69ae766c9537e74cd Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Fri, 3 Oct 2025 10:42:19 -0400 Subject: [PATCH] feat(ci): Add verbose option to reusable lint workflow --- .github/workflows/common_cocoapods.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/common_cocoapods.yml b/.github/workflows/common_cocoapods.yml index a8d02d13a86..79562cab290 100644 --- a/.github/workflows/common_cocoapods.yml +++ b/.github/workflows/common_cocoapods.yml @@ -75,6 +75,12 @@ on: required: false default: true + # Whether to lint with `--verbose`. Defaults to false. + verbose: + type: boolean + required: false + default: false + # Whether to additionally build with Swift 6. Defaults to false. supports_swift6: type: boolean @@ -151,6 +157,7 @@ jobs: command: | scripts/pod_lib_lint.rb ${{ inputs.product }}.podspec --platforms=${{ matrix.platform }} \ ${{ inputs.allow_warnings == true && '--allow-warnings' || '' }} \ + ${{ inputs.verbose == true && '--verbose' || '' }} \ ${{ inputs.analyze == false && '--no-analyze' || '' }} \ ${{ inputs.test_specs != '' && format('--test-specs={0}', inputs.test_specs) || '' }} \ ${{ (contains(inputs.buildonly_platforms, matrix.platform) || contains(inputs.buildonly_platforms, 'all')) && '--skip-tests' || '' }}