Add support for SPM dynamic linking #316
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: Run CI | |
| on: [push, pull_request] | |
| jobs: | |
| CI: | |
| # ℹ️ Available GitHub Actions Runner Images | |
| # https://github.com/actions/runner-images | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - run: bundle install | |
| - run: pod install --repo-update | |
| - name: Set Xcode Version 16.4.0 | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.0.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 }}." |