File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
composite_actions/run_xcodebuild_test Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1- name : ' Run Test '
2- description : ' Action runs the test specified at project_path for workspace and scheme'
1+ name : ' Run pod install; xcodebuild test '
2+ description : ' Action runs pod install and then runs the tests specified at project_path for workspace and scheme'
33
44inputs :
55 project_path :
@@ -19,7 +19,15 @@ inputs:
1919runs :
2020 using : " composite"
2121 steps :
22- - name : CocoaPod Install
22+ - name : CocoaPods Cache
23+ uses : actions/cache@937d24475381cd9c75ae6db12cb4e79714b926ed
24+ with :
25+ path : ~/Library/Caches/CocoaPods
26+ key : pods-${{ inputs.workspace }}-${{ hashFiles('**/Podfile.lock') }}
27+ restore-keys : |
28+ pods-${{ inputs.workspace }}-
29+
30+ - name : CocoaPods Install
2331 run : |
2432 cd ${{ inputs.project_path }}
2533 pod install
Original file line number Diff line number Diff line change 1- name : IntegrationTest
1+ name : Integration Tests
22on :
33 push :
44 branches : [main]
You can’t perform that action at this time.
0 commit comments