Skip to content

Co-Badged Cards Example App #29

Co-Badged Cards Example App

Co-Badged Cards Example App #29

Workflow file for this run

name: Build Example Apps
on:
pull_request:
types:
- opened
- edited
- synchronize
jobs:
build:
name: "Build Example App"
runs-on: macos-13
strategy:
max-parallel: 2
matrix:
project: [
{ scheme: 'Co-Badged Cards Example', path: 'Co-Badged Cards/SwiftUI/Co-Badged Cards Example.xcodeproj' }
]
steps:
- name: Cancel previous jobs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Git - Checkout
uses: actions/[email protected]
with:
ref: ${{ github.ref }}
- name: Select Xcode Version
uses: maxim-lobanov/[email protected]
with:
xcode-version: '15.0'
- uses: ruby/[email protected]
with:
ruby-version: "3.2"
bundler-cache: true
- name: Build with fastlane
run: |
bundle exec fastlane ios build_example_app "scheme:${{ matrix.project.scheme }}" "project_path:${{ matrix.project.path }}"