diff --git a/.github/workflows/CocoaPods.yml b/.github/workflows/CocoaPods.yml new file mode 100644 index 0000000..786b7f8 --- /dev/null +++ b/.github/workflows/CocoaPods.yml @@ -0,0 +1,15 @@ +name: Cocoapods + +on: [push] + +jobs: + lint: + runs-on: macos-latest + + steps: + - uses: maxim-lobanov/setup-xcode@v1.1 + with: + xcode-version: '12.3' + - uses: actions/checkout@v2 + - name: Lint Cocoapods + run: pod lib lint --allow-warnings diff --git a/RxCoreStore.podspec b/RxCoreStore.podspec index 5115c60..7aa36b4 100644 --- a/RxCoreStore.podspec +++ b/RxCoreStore.podspec @@ -15,6 +15,6 @@ Pod::Spec.new do |s| s.frameworks = "Foundation", "CoreData" s.requires_arc = true s.dependency "CoreStore", ">=7.3.0" - s.dependency "RxCocoa", ">=5.1.1" - s.dependency "RxSwift", ">=5.1.1" + s.dependency "RxCocoa", ">=6.0.0" + s.dependency "RxSwift", ">=6.0.0" end