Skip to content

Build iOS project on pull_request#923 by jmatsu #560

Build iOS project on pull_request#923 by jmatsu

Build iOS project on pull_request#923 by jmatsu #560

Workflow file for this run

name: iOS Build
on:
push:
branches: [ "main" ]
pull_request:
concurrency:
group: ios-build-${{ github.ref }}
cancel-in-progress: true
run-name: "Build iOS project on ${{ github.event_name}}${{ github.event.pull_request.number && format('#{0}', github.event.pull_request.number) || '' }} by ${{ github.actor }}"
jobs:
build-ios:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- id: ios
uses: ./.github/actions/setup-ios
- run: bundle exec fastlane build
working-directory: ${{ steps.ios.outputs.working-directory }}