Skip to content

Environment Support (009) #9

Environment Support (009)

Environment Support (009) #9

Workflow file for this run

name: CI-iOS
on:
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_15.4.app
- name: Xcode version
run: /usr/bin/xcodebuild -version
- name: Create Secrets.xcconfig
env:
SECRETS_XCCONFIG: ${{ secrets.SECRETS_XCCONFIG }}
run: |
echo "$SECRETS_XCCONFIG" | base64 --decode > BoilerplateApp/BoilerplateApp/Config/Secrets.xcconfig
- name: Build and Test
run: make test