Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Update myrickandmorty.yml #7

Update myrickandmorty.yml

Update myrickandmorty.yml #7

name: MyRickAndMortyJobs
on:
push:
branches:
- main
jobs:
test:
name: MyRickAndMortyTests
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: 15.0
- name: Install Mint
run: brew install mint
- name: Generate Xcode project
run: mint bootstrap && mint run xcodegen
- name: Install Bundler
run: gem install bundler:2.2.16
- name: Bundle Install
run: bundle install
- name: CocoaPods
run: bundle exec pod install
- name: Build and test
run: xcodebuild test -workspace MyRickAndMorty.xcworkspace -scheme MyRickAndMortyApp -destination "platform=iOS Simulator,OS=17.0.1,name=iPhone 15"