-
Notifications
You must be signed in to change notification settings - Fork 520
executable file
·36 lines (32 loc) · 942 Bytes
/
Copy pathBuild.yml
File metadata and controls
executable file
·36 lines (32 loc) · 942 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
name: Building
on: [push, pull_request]
jobs:
build:
name: Building SCLAlertView
runs-on: macos-15
strategy:
matrix:
scheme: [
SCLAlertView
]
destination: [
'platform=iOS Simulator,name=iPhone 16,OS=26.1'
]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: 26.1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
bundler-cache: true
- name: Building ${{ matrix.scheme }} on ${{ matrix.destination }}
run: |
set -o pipefail && xcodebuild -project SCLAlertView.xcodeproj \
-scheme ${{ matrix.scheme }} \
-destination '${{ matrix.destination }}' \
clean build | xcbeautify --renderer github-actions