Health Check Workflow [TEST] #2
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: Health Check Workflow [TEST] | |
on: | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: # Allow manual trigger from GitHub UI | |
jobs: | |
health-check: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Ruby environment | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.4.1' | |
- name: Install dependencies | |
run: | | |
gem install bundler | |
bundle install | |
- name: Check pods and deployment targets | |
run: bundle exec fastlane check_pods |