Skip to content

add xcbeautify

add xcbeautify #339

Workflow file for this run

on:
pull_request:
paths:
- 'firoptions/**'
- '.github/workflows/core.yml'
name: Analytics + Core
jobs:
swift-build:
name: Swift build
runs-on: macOS-latest
strategy:
matrix:
destination: ['platform=iOS Simulator,OS=latest,name=iPhone 16']
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install deps
run: brew install xcbeautify
- name: Build Swift snippets
run: |
cp .github/GoogleService-Info-CI.plist firoptions/FiroptionConfiguration/GoogleService-Info.plist
cd firoptions
xcodebuild -project FiroptionConfiguration.xcodeproj clean build -scheme FiroptionConfiguration -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify --renderer github-actions
env:
destination: ${{ matrix.destination }}