Skip to content

[ZEUS-4454] Added script to generate missing file for Folder structure #21

[ZEUS-4454] Added script to generate missing file for Folder structure

[ZEUS-4454] Added script to generate missing file for Folder structure #21

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: SPM Build and Test
on:
push:
branches: [ "feature/unit-test", "main", "release/1.0.3"]
pull_request:
branches: [ "feature/unit-test", "main", "release/1.0.3" ]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
platform: [ ios ]
steps:
- name: Clean DerivedData
run: rm -rf ~/Library/Developer/Xcode/DerivedData
- name: Checkout code
- uses: actions/checkout@v4
- name: Generate Folder Structure
run: bash generate_folder_structure.sh
- name: Build and run tests
run: xcodebuild test -scheme PlaybackSDK -destination 'platform=iOS Simulator,name=iPhone 13'