MOBILE-72: Refactor HTTP response handling to prioritize HTTP status code #707
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: SwiftLint & UnitTests | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - mission/* | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| SwiftLint: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/realm/swiftlint:latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: swiftlint --config .swiftlint.yml --reporter github-actions-logging --strict | |
| build: | |
| runs-on: macos-26 | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Update bundler | |
| run: gem install bundler | |
| - name: Install bundler dependencies | |
| run: bundle install | |
| - name: Install yeetd | |
| run: | | |
| wget https://github.com/biscuitehh/yeetd/releases/download/1.0/yeetd-normal.pkg | |
| sudo installer -pkg yeetd-normal.pkg -target / | |
| yeetd & | |
| - name: Run unit tests | |
| run: bundle exec fastlane unitTestLane |