Update dependency firebase/firebase-ios-sdk to from: "12.10.0" #239
This file contains hidden or 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
| name: Swift | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macos-15 | |
| env: | |
| TEST: 1 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Create GoogleService-Info.plist from GOOGLE_SERVICE_INFO_PLIST | |
| run: | | |
| echo GOOGLE_SERVICE_INFO_PLIST | base64 -d >> Tests/GoogleService-Info.plist | |
| shell: bash | |
| env: | |
| GOOGLE_SERVICE_INFO_PLIST: ${{ secrets.GOOGLE_SERVICE_INFO_PLIST }} | |
| - name: Change Xcode version | |
| run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
| - name: Build | |
| run: swift build | |
| - name: Run tests | |
| run: swift test |