Update Firebase version #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Practical Examples | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- develop | |
defaults: | |
run: | |
working-directory: Examples/Practical | |
jobs: | |
test: | |
name: "Test BoardApplication" | |
runs-on: macos-14 | |
defaults: | |
run: | |
working-directory: Examples/Practical/BoardApplication | |
shell: bash | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Cache SwiftPM | |
uses: actions/cache@v2 | |
with: | |
path: SourcePackages | |
key: ${{ runner.os }}-spm-${{ hashFiles('*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }} | |
restore-keys: ${{ runner.os }}-spm- | |
- name: Install xcpretty | |
run: bundle install | |
working-directory: ./ | |
- name: Build | |
run: | | |
set -o pipefail && \ | |
xcodebuild -scheme BoardApplication \ | |
build -destination "name=iPhone 15" \ | |
-clonedSourcePackagesDirPath SourcePackages \ | |
| bundle exec xcpretty |