-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 860 Bytes
/
ci.yml
File metadata and controls
37 lines (34 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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.13
with:
xcode: ${{ matrix.xcode }}
cache-derived-data: true
action: xcodebuild-test
platform: ${{ matrix.platform }}
scheme: swift-resettable-Package