Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/composite_actions/run_xcodebuild_test/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Run Test'
description: 'Action runs the test specified at project_path for workspace and scheme'
name: 'Run pod install; xcodebuild test'
description: 'Action runs pod install and then runs the tests specified at project_path for workspace and scheme'

inputs:
project_path:
Expand All @@ -19,7 +19,15 @@ inputs:
runs:
using: "composite"
steps:
- name: CocoaPod Install
- name: CocoaPods Cache
uses: actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
with:
path: ~/Library/Caches/CocoaPods
key: pods-${{ inputs.workspace }}-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
pods-${{ inputs.workspace }}-

- name: CocoaPods Install
run: |
cd ${{ inputs.project_path }}
pod install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integ_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: IntegrationTest
name: Integration Tests
on:
push:
branches: [main]
Expand Down