-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
321 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: "CHTCollectionViewWaterfallLayout CI" | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
Demo: | ||
name: Demo Project (Latest Stable Xcode) | ||
runs-on: macOS-11 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Xcode version | ||
uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: latest-stable | ||
|
||
- name: Build Swift Project | ||
uses: sersoft-gmbh/[email protected] | ||
with: | ||
project: Demo/Swift/CHTWaterfallSwiftDemo.xcodeproj | ||
scheme: CHTWaterfallSwiftDemo | ||
destination: name=iPhone 13 Pro | ||
action: build | ||
|
||
- name: Build Objective-C Project | ||
uses: sersoft-gmbh/[email protected] | ||
with: | ||
project: Demo/Objective-C/Demo.xcodeproj | ||
scheme: Demo | ||
destination: name=iPhone 13 Pro | ||
action: build | ||
|
||
Pods: | ||
name: Cocoapods Lint (Latest Stable Xcode) | ||
runs-on: macOS-11 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Xcode version | ||
uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: latest-stable | ||
|
||
- name: Run pod lib lint dynamic-framework | ||
run: pod lib lint --fail-fast | ||
|
||
- name: Run pod lib lint static-framework | ||
run: pod lib lint --fail-fast --use-libraries --use-modular-headers | ||
|
||
SwiftPM: | ||
name: SwiftPM (Latest Stable Xcode) | ||
runs-on: macOS-11 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Xcode version | ||
uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: latest-stable | ||
|
||
- name: Build Swift Version | ||
run: xcodebuild -scheme CHTCollectionViewWaterfallLayout -destination generic/platform=iOS | ||
|
||
- name: Build ObjC Version | ||
run: xcodebuild -scheme CHTCollectionViewWaterfallLayoutObjC -destination generic/platform=iOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,8 @@ DerivedData | |
|
||
# Carthage | ||
Carthage/ | ||
|
||
# Swift Package Manager | ||
.build/ | ||
.swiftpm/ | ||
Package.resolved |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.