Skip to content

Refactoring: Weakening type requirements to give more freedom to the … #39

Refactoring: Weakening type requirements to give more freedom to the …

Refactoring: Weakening type requirements to give more freedom to the … #39

Workflow file for this run

name: Build
on:
push:
branches:
- master
- whitelist
pull_request:
branches:
- master
jobs:
build_check:
runs-on: macOS-13
strategy:
max-parallel: 2
fail-fast: false
matrix:
destination:
- "generic/platform=iOS Simulator"
- "generic/platform=macOS,variant=Mac Catalyst"
- "generic/platform=iOS"
steps:
- name: Select Xcode
run: |
xcodes select 15.2
- name: Check XCode Version
run: xcodebuild -version
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: |
set -o pipefail && xcodebuild build -scheme FastRTPSSwift -destination "${{ matrix.destination }}" | xcpretty
test:
name: Test
runs-on: macOS-13
steps:
- name: Select Xcode
run: |
xcodes select 15.2
- name: Check XCode Version
run: xcodebuild -version
- name: Checkout
uses: actions/checkout@v4
- name: macOS Native build & test
run: swift test