chore: update build machine to macos-latest #180
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: Build and Test iOS | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v4 | |
| - name: "Select Latest Xcode" | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Set Homebrew PATH | |
| run: | | |
| echo "PATH=/opt/homebrew/bin:/usr/local/bin:$PATH" >> $GITHUB_ENV | |
| chmod +x /opt/homebrew/bin/carthage | |
| - name: Verify Carthage Installation | |
| run: which carthage | |
| env: | |
| PATH: "/opt/homebrew/bin:/usr/local/bin:$PATH" | |
| - name: "Carthage Cached Bootstrap" | |
| uses: DevCycleHQ/[email protected] | |
| env: | |
| PATH: "/opt/homebrew/bin:/usr/local/bin:$PATH" | |
| with: | |
| github-token: ${{ secrets.AUTOMATION_USER_TOKEN }} | |
| use-xcframeworks: true | |
| - name: Fastlane iOS Tests | |
| run: fastlane ios tests |