Merge pull request #281 from heoblitz/fix/markDirty_error #324
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: 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 && fastlane travis | |
| - run: bash <(curl -s https://codecov.io/bash) -J 'FlexLayout' -J 'FlexLayoutTests' | |
| - run: echo "🍏 This job's status is ${{ job.status }}." |