New Crowdin updates #24
This file contains 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: Gated Check-in | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.2 | |
- name: Setup Xcode Version | |
uses: maxim-lobanov/setup-xcode@v1.6.0 | |
with: | |
xcode-version: latest-stable | |
- name: Install swift-format | |
run: | | |
brew update | |
brew install swift-format | |
- name: Lint using swift-format | |
run: | | |
/opt/homebrew/bin/swift-format lint -s -p -r ./ | |
- name: Build and Analyze | |
run: > | |
xcodebuild clean build analyze | |
-project "Front Row.xcodeproj" | |
-scheme "Front Row" | |
CODE_SIGNING_ALLOWED=NO | xcpretty && exit ${PIPESTATUS[0]} |