fix: sdk-5210 correct ios release workflows #48
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Code Quality Checks | |
| on: | |
| pull_request: | |
| branches: ['master'] | |
| types: ['opened', 'reopened', 'synchronize'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Code Quality Checks | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout source branch | |
| uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
| - name: Install Cocoapods | |
| run: gem install cocoapods | |
| - name: Execute pod lint | |
| run: pod lib lint --no-clean --allow-warnings |