Added language_requested fpti for analytics
#193
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: Linting | |
| on: [pull_request, workflow_dispatch, workflow_call] | |
| concurrency: | |
| group: lint-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| linting: | |
| name: Linting | |
| runs-on: macos-15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install SwiftLint | |
| run: brew install swiftlint | |
| - name: Install Dependencies | |
| run: bundle install | |
| - name: Run Linting | |
| run: bundle exec fastlane lint summary:$GITHUB_STEP_SUMMARY |