This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
Add package deprecation messaging #106
Workflow file for this run
This file contains 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: Verify Cocoapod | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify-pod: | |
name: Verify Pod | |
runs-on: macos-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Lint Cocoapod | |
if: ${{ github.event.inputs.release-type == 'major' }} | |
run: | | |
set -eo pipefail | |
pod lib lint --allow-warnings |