Set deployment target to 12.0 #45
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: Building | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Building AKSideMenu Example | |
runs-on: macOS-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: 15.1 | |
- name: Install Dependencies for Simple Example | |
run: | | |
pod install --project-directory=AKSideMenuExamples/Simple | |
shell: bash | |
- name: Install Dependencies for Storyboard Example | |
run: | | |
pod install --project-directory=AKSideMenuExamples/Storyboard | |
shell: bash | |
- name: Building iOS Simple app | |
run: exec ./.github/scripts/build_app.sh simple | |
- name: Building iOS Storyboard app | |
run: exec ./.github/scripts/build_app.sh storyboard |