Skip to content

feat(CI): Update workflow #7

feat(CI): Update workflow

feat(CI): Update workflow #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
xcodebuild-test:
name: xcodebuild-test
if: |
!contains(github.event.head_commit.message, '[ci skip]') &&
!contains(github.event.head_commit.message, '[ci skip test]')
runs-on: macos-latest
strategy:
matrix:
platform: [iOS, macOS, macCatalyst, tvOS, watchOS]
xcode: ['26.2']
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: Test
uses: capturecontext/swift-package-action/build@3.0-beta.8
with:
xcode: ${{ matrix.xcode }}
cache-derived-data: true
action: xcodebuild-test
platform: ${{ matrix.platform }}
workspace: .swiftpm/xcode/package.xcworkspace
scheme: combine-interception-Package
config: Debug