Remove CI compile warning #249
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: Run CI | |
on: [push, pull_request] | |
jobs: | |
CI: | |
# ℹ️ Available GitHub Actions Runner Images | |
# https://github.com/actions/runner-images | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- run: bundle install | |
- run: pod install --repo-update | |
- name: Set Xcode Version 15.1.0 (iOS 17) | |
run: sudo xcode-select -s /Applications/Xcode_15.1.app | |
- name: fastlane | |
run: set -o pipefail && bundle exec fastlane travis | |
- run: bash <(curl -s https://codecov.io/bash) -J 'FlexLayout' -J 'FlexLayoutTests' | |
- run: echo "🍏 This job's status is ${{ job.status }}." |