Add Dutch Localization #211
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: Unit Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- dev | |
push: | |
branches: | |
- main | |
- dev | |
# Limit only the latest workflow created to run | |
concurrency: | |
group: build | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare xcconfig | |
run: cp Basic-Car-Maintenance.xcconfig.template Basic-Car-Maintenance.xcconfig | |
- name: Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Update dependencies | |
run: bundle install | |
- name: Install build log formatter | |
run: brew install xcbeautify | |
- name: Run Unit Tests | |
run: bundle exec fastlane unit_tests |