KM-4856: Fix DIP on tvOS due to Accounts migrations #119
Workflow file for this run
This file contains 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_build_and_test | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: "${{ github.run_id }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-14 | |
env: | |
TEST_RUNNER_PIA_TEST_USER: ${{ secrets.PIA_ACCOUNT_USERNAME}} | |
TEST_RUNNER_PIA_TEST_PASSWORD: ${{ secrets.PIA_ACCOUNT_PASSWORD }} | |
TEST_RUNNER_PIA_TEST_DEDICATEDIP: ${{ secrets.PIA_TEST_DEDICATEDIP }} | |
steps: | |
- name: Setup Git credentials | |
run: | | |
git config --global url."https://${{ secrets.ORG_GITHUB_USERNAME }}:${{ secrets.ORG_GITHUB_TOKEN }}@github.com/".insteadOf "[email protected]:" | |
- uses: actions/checkout@v3 | |
- name: Select XCode version | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.2 | |
- name: Install Fastlane | |
run: gem install fastlane | |
- name: Run iOS unit tests | |
run: bundle exec fastlane tests | |
- name: Run iOS e2e tests | |
run: bundle exec fastlane ios_e2e_tests | |
timeout-minutes: 45 | |