Skip to content

feature(Example): Update example project #121

feature(Example): Update example project

feature(Example): Update example project #121

Workflow file for this run

name: "AudioStreaming CI"
on:
push:
branches:
- main
- hotfix
pull_request:
branches:
- '*'
# jobs:
# iOS:
# name: Test iOS
# runs-on: macOS-latest
# env:
# DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer
# strategy:
# matrix:
# destination: ["OS=latest,name=iPhone 13 Pro"]
# steps:
# - uses: actions/checkout@v2
# - name: iOS - ${{ matrix.destination }}
# run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -project "AudioStreaming.xcodeproj" -scheme "AudioStreaming" -destination "${{ matrix.destination }}" clean test | xcpretty
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
swift: ["5"]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test