Skip to content

Chore/macOS 15 runner #960

Chore/macOS 15 runner

Chore/macOS 15 runner #960

Workflow file for this run

name: Tests
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Tests:
runs-on: macos-15-xlarge
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Load Latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build project
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild build-for-testing -destination 'name=iPhone 16 Pro' -scheme 'PovioKit-Package' | xcbeautify --renderer github-actions
- name: Run tests
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild test-without-building -destination 'name=iPhone 16 Pro' -scheme 'PovioKit-Package' | xcbeautify --renderer github-actions