Added language_requested fpti for analytics
#194
Workflow file for this run
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: Build | |
| on: [pull_request, workflow_dispatch, workflow_call] | |
| concurrency: | |
| group: build-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| cocoapods: | |
| name: CocoaPods | |
| runs-on: macos-15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| run: bundle install | |
| - name: Run pod lib lint | |
| env: | |
| BUNDLE_DISABLE_EXEC_LOAD: "1" | |
| run: bundle exec fastlane build_pod | |
| spm: | |
| name: Swift Package Manager | |
| runs-on: macos-15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| run: bundle install | |
| - name: Build SPM test app | |
| run: bundle exec fastlane build_spm | |
| carthage: | |
| name: Carthage | |
| runs-on: macos-15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| run: bundle install | |
| - name: Build Carthage test app | |
| run: bundle exec fastlane build_carthage |