Skip to content

Commit

Permalink
Merge branch 'develop' into feature/ALTAPPS-498/Local_logging
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderZhu committed Sep 29, 2023
2 parents b1aaa13 + c46f66b commit f18478d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ios_unit_testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: iOS Unit Testing

on:
workflow_dispatch:
# Runs at 00:00 UTC every day
schedule:
- cron: "0 0 * * *"

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
test:
name: Run iOS unit tests
runs-on: macos-13
timeout-minutes: 60

steps:
- name: Checkout
uses: actions/[email protected]

- name: Setup CI
id: setup
uses: ./.github/actions/setup-ios
with:
git-crypt-key: ${{ secrets.GIT_CRYPT_KEY }}

- name: Run unit tests
working-directory: './iosHyperskillApp'
run: bundle exec fastlane run_unit_tests install_pods:false
env:
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60
IS_GIT_CRYPT_UNLOCKED: ${{ steps.setup.outputs.is-git-crypt-unlocked }}
GITHUB_USER: ${{ github.actor }}
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f18478d

Please sign in to comment.