-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NBKFlexibleWidthKit] Merge up to and including v0.11.0 (#33).
- Loading branch information
Showing
84 changed files
with
5,087 additions
and
2,130 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,31 @@ | ||
name: Publish specifications on CocoaPods | ||
|
||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
publish: | ||
runs-on: macos-13 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Select Xcode 14.3.1 | ||
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | ||
|
||
- name: Publish 'Numberick-NBKCoreKit.podspec' | ||
run: pod trunk push --allow-warnings --synchronous Numberick-NBKCoreKit.podspec | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | ||
|
||
- name: Publish 'Numberick-NBKDoubleWidthKit.podspec' | ||
run: pod trunk push --allow-warnings --synchronous Numberick-NBKDoubleWidthKit.podspec | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | ||
|
||
- name: Publish 'Numberick.podspec' | ||
run: pod trunk push --allow-warnings --synchronous Numberick.podspec | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |
33 changes: 33 additions & 0 deletions
33
.github/workflows/run-lint-on-cocoapods-specifications.yml
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,33 @@ | ||
name: Run lint on CocoaPods specifications | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- 'CocoaPods-v[0-9]+.[0-9]+.[0-9]+' | ||
- 'CocoaPods-v[0-9]+.[0-9]+.[0-9]+-*' | ||
|
||
jobs: | ||
macos: | ||
strategy: | ||
matrix: | ||
element: | ||
- xcode: '14.3' | ||
machine: macos-13 | ||
|
||
runs-on: ${{ matrix.element.machine }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Select Xcode ${{ matrix.element.xcode }} | ||
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.element.xcode }}.app | ||
- name: Run lint on 'Numberick.podspec' | ||
run: | | ||
DEPENDENCIES='' | ||
DEPENDENCIES+=Numberick-NBKCoreKit.podspec, | ||
DEPENDENCIES+=Numberick-NBKDoubleWidthKit.podspec, | ||
pod lib lint Numberick.podspec \ | ||
--allow-warnings \ | ||
--fail-fast \ | ||
--include-podspecs=\{$DEPENDENCIES\} |
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,26 @@ | ||
name: Run tests on Linux | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
linux: | ||
strategy: | ||
matrix: | ||
element: | ||
- swift: '5.7' | ||
- swift: '5.8' | ||
|
||
runs-on: ubuntu-latest | ||
container: | ||
image: swift:${{ matrix.element.swift }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Test | ||
run: swift test |
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,28 @@ | ||
name: Run tests on macOS | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
macos: | ||
strategy: | ||
matrix: | ||
element: | ||
- xcode: '14.2' | ||
machine: macos-12 | ||
- xcode: '14.3' | ||
machine: macos-13 | ||
|
||
runs-on: ${{ matrix.element.machine }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Select Xcode ${{ matrix.element.xcode }} | ||
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.element.xcode }}.app | ||
- name: Test | ||
run: xcrun swift test |
71 changes: 0 additions & 71 deletions
71
.swiftpm/xcode/xcshareddata/xcschemes/NBKFlexibleWidthKit.xcscheme
This file was deleted.
Oops, something went wrong.
71 changes: 0 additions & 71 deletions
71
.swiftpm/xcode/xcshareddata/xcschemes/NBKResizableWidthKit.xcscheme
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
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.