File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ test :
11+ runs-on : macos-15
12+ strategy :
13+ matrix :
14+ include :
15+ - xcode : " 26.2"
16+ destination : " platform=iOS Simulator,name=iPhone 17,OS=26.2"
17+ - xcode : " 16.2"
18+ destination : " platform=iOS Simulator,name=iPhone 16,OS=18.2"
19+ - xcode : " 16.2"
20+ destination : " platform=iOS Simulator,name=iPhone 15,OS=17.5"
21+
22+ steps :
23+ - uses : actions/checkout@v4
24+
25+ - name : Select Xcode
26+ run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
27+
28+ - name : Install Tuist
29+ run : |
30+ brew tap tuist/tuist
31+ brew install --formula tuist
32+
33+ - name : Generate Project
34+ run : tuist generate --no-open
35+
36+ - name : Run Tests
37+ run : |
38+ xcodebuild test \
39+ -scheme "Tests" \
40+ -destination "${{ matrix.destination }}" \
41+ -configuration Debug \
42+ CODE_SIGN_IDENTITY="" \
43+ CODE_SIGNING_REQUIRED=NO
Load diff This file was deleted.
Original file line number Diff line number Diff line change 11UITextView+Placeholder
22======================
33
4- [ ![ Build Status ] ( https://travis-ci.org /devxoul/UITextView-Placeholder. svg?branch=master )] ( https://travis-ci.org /devxoul/UITextView-Placeholder )
4+ [ ![ CI ] ( https://github.com /devxoul/UITextView-Placeholder/actions/workflows/ci.yml/badge. svg )] ( https://github.com /devxoul/UITextView-Placeholder/actions/workflows/ci.yml )
55[ ![ CocoaPods] ( http://img.shields.io/cocoapods/v/UITextView+Placeholder.svg?style=flat )] ( http://cocoapods.org/?q=name%3AUITextView%2BPlaceholder )
66
77A missing placeholder for UITextView.
You can’t perform that action at this time.
0 commit comments