Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,25 @@ jobs:
- name: Test
run: swift test

cocoapods:
cocoapods-objc:
strategy:
matrix:
podspec: [PromisesObjC.podspec, PromisesSwift.podspec]
platform: [ios, tvos, macos, watchos]
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
pod lib lint ${{ matrix.podspec }} --platforms=${{ matrix.platform }}
pod lib lint PromisesObjC.podspec --platforms=${{ matrix.platform }}


cocoapods-swift:
strategy:
matrix:
platform: [ios, tvos, macos, watchos]
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
pod lib lint PromisesSwift.podspec --platforms=${{ matrix.platform }} --include-podspecs=PromisesObjC.podspec
2 changes: 1 addition & 1 deletion PromisesObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PromisesObjC'
s.version = '2.4.0'
s.version = '2.4.1'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.homepage = 'https://github.com/google/promises'
Expand Down
2 changes: 1 addition & 1 deletion PromisesSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PromisesSwift'
s.version = '2.4.0'
s.version = '2.4.1'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.homepage = 'https://github.com/google/promises'
Expand Down
Loading