Skip to content

no iOS (this will still fail, though) #3

no iOS (this will still fail, though)

no iOS (this will still fail, though) #3

Workflow file for this run

name: Integrate
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: macOS-14
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
strategy:
matrix:
destination:
- "platform=macOS"
steps:
- uses: actions/checkout@v4
- name: Get Scheme Names
run: xcodebuild -list
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme DiscriminatedUnionClient -destination "${{ matrix.destination }}" -disableAutomaticPackageResolution test | xcbeautify