Refactor unit tests #1
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: iOS CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| tests: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-versiton: 2.6 | |
| - name: Install Bundler | |
| run: gem install bundler | |
| - name: Install dependencies | |
| run: bundle install | |
| - name: Set up Xcode | |
| run: sudo xcode-select -s /Applications/Xcode_26.0.app | |
| - name: Run tests with Fastlane | |
| run: bundle exec fastlane tests | |