Skip to content

fix: typo in swift.yml #31

fix: typo in swift.yml

fix: typo in swift.yml #31

Workflow file for this run

name: iOS CI (Fastlane)
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check_and_test:
name: Lint & Test (via Fastlane)
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 26.3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Ensure SwiftLint
run: |
if ! command -v swiftlint &> /dev/null; then
brew install swiftlint
fi
- name: Run Tests (Includes Lint)
run: bundle exec fastlane tests
env:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 10