Skip to content

move NimbusAd creation to TestRenderViewController for easier manipul… #156

move NimbusAd creation to TestRenderViewController for easier manipul…

move NimbusAd creation to TestRenderViewController for easier manipul… #156

Workflow file for this run

name: Swift Package Manager
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
name: Build Project
runs-on: macos-14
steps:
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_15.3.app
- uses: actions/checkout@v4
with:
lfs: true
- name: Install xcbeautify
run: brew install xcbeautify
- name: Restore Build Cache
uses: actions/cache@v4
with:
path: |
.build
!.build/Logs/**
!.build/TestResults/**
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.*') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Build Sample App
run: set -o pipefail && xcodebuild -scheme "nimbus-ios-sample" -configuration "Debug" -sdk "iphonesimulator17.4" -derivedDataPath .build/DerivedData | xcbeautify