Skip to content

Commit 73e4b88

Browse files
committed
Fix missing pod lib lint Xcode 15.2 runs
1 parent 9510454 commit 73e4b88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/database.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626
strategy:
2727
matrix:
2828
target: [ios, tvos, macos --skip-tests, watchos]
29-
include:
29+
build-env:
3030
- os: macos-14
3131
xcode: Xcode_15.2
3232
- os: macos-15
3333
xcode: Xcode_16.1
34-
runs-on: ${{ matrix.os }}
34+
runs-on: ${{ matrix.build-env.os }}
3535
steps:
3636
- uses: actions/checkout@v4
3737
- uses: ruby/setup-ruby@v1
3838
- name: Setup Bundler
3939
run: scripts/setup_bundler.sh
4040
- name: Xcode
41-
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
41+
run: sudo xcode-select -s /Applications/${{ matrix.build-env.xcode }}.app/Contents/Developer
4242
- name: Build and test
4343
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDatabase.podspec --test-specs=unit --platforms=${{ matrix.target }}
4444

0 commit comments

Comments
 (0)