chore: bump apps version to 7.2.0 (#2534) #110
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: Test iOS app | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| run-tests: | |
| name: Run tests | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install iOS Dependencies | |
| uses: ./.github/actions/install-ios-dep | |
| - name: Run unit tests | |
| shell: bash | |
| run: | | |
| cd ios | |
| bundle exec fastlane run_unit_tests |