build(deps): bump github/codeql-action from 4.37.7 to 4.37.8 #363
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: fastlane | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install gems | |
| run: | | |
| bundle config set deployment 'true' | |
| bundle config set path ${BUNDLE_PATH:-vendor/bundle} | |
| bundle install --jobs=3 --retry=3 | |
| - name: Install SwiftLint | |
| run: brew install swiftlint | |
| - name: Add key | |
| run: "./scripts/add-key.sh" | |
| env: | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| - name: Resolve Swift Package Manager dependencies (https://github.com/fastlane/fastlane/pull/15505) | |
| run: xcodebuild -resolvePackageDependencies | |
| - name: Build and test | |
| run: bundle exec fastlane test | |
| - name: Remove key | |
| run: "./scripts/remove-key.sh" |